diff --git a/CHANGES b/CHANGES index 9aa9cd486..7f9cfbfea 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,20 @@ SWIG (Simplified Wrapper and Interface Generator) +6/16/00 : beazley + Added -includeall to follow all #include statements in the + preprocessor. + +6/15/00 : beazley + Tried to fix as many C++ warnings as possible when compiling + with the Sun Workshop C++ compiler. Unfortunately, this means + that there are a lot of statements that contain string literals + of the form (char*)"Blah". + +6/15/00: beazley + A variety of cleanup and performance optimization in the + low-level DOH library. This seems to result in a speedup + of 50-100% for preprocessing and other related tasks. + 5/10/00 : ttn Applied variable-wrapping bugfix patch contributed by Matthias Koeppe. diff --git a/Source/Preprocessor/cpp.c b/Source/Preprocessor/cpp.c index 5a1524951..c2a835fe3 100644 --- a/Source/Preprocessor/cpp.c +++ b/Source/Preprocessor/cpp.c @@ -21,7 +21,7 @@ static char cvsroot[] = "$Header$"; #include static DOHHash *cpp = 0; /* C preprocessor data */ -static int include_all = 1; /* Follow all includes */ +static int include_all = 0; /* Follow all includes */ static int single_include = 1; /* Only include each file once */ static int silent_errors = 0; static DOHHash *included_files = 0;