- Add support for using Ghostscript to convert Postscript to PDF files.
+ From Greg Spencer:
+
+ - Support the C preprocessor #import statement.
+
RELEASE 0.13 - Mon, 31 Mar 2003 20:22:00 -0600
import SCons.Util
import SCons.Warnings
-include_re = re.compile('^[ \t]*#[ \t]*include[ \t]+(<|")([^>"]+)(>|")', re.M)
+include_re = re.compile('^[ \t]*#[ \t]*(?:include|import)[ \t]+(<|")([^>"]+)(>|")', re.M)
def CScan(fs = SCons.Node.FS.default_fs):
"""Return a prototype Scanner instance for scanning source files
#include \"d1/f1.h\"
#include <d2/f1.h>
#include \"f1.h\"
-#include <f4.h>
+#import <f4.h>
int main()
{