diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-15 07:58:38 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-15 07:58:38 +0000 |
commit | 4f80d25b87fcbbec22e05d3894d0e6e47b2f1163 (patch) | |
tree | 0988a96569fcf89616a90abf081927a8c8328cf8 /fixincludes/fixfixes.c | |
parent | 38ddce4759617c496335aab7ee3a0fe17adbe569 (diff) | |
download | gcc-4f80d25b87fcbbec22e05d3894d0e6e47b2f1163.tar.gz |
2004-08-14 Paolo Bonzini <bonzini@gnu.org>
PR other/17991
* Makefile.in (ALLOBJ, TESTOBJ, FIXOBJ): Add fixopts.o.
Update copyright year.
* fixfixes.c (main): Call initialize_opts from fixopts.c.
* fixincl.c (initialize): Call initialize_opts from fixopts.c,
do not include code for parsing options (environment vars).
(fix_with_system): Use a search path for applyfix, so that you
can run the test suite with two-process fixincludes.
* fixopts.c: New file.
* configure.ac: Add --enable-twoprocess. Export ac_exeext
to config.h. Default to --enable-twoprocess for MinGW32.
* config.h.in: Regenerate.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89087 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'fixincludes/fixfixes.c')
-rw-r--r-- | fixincludes/fixfixes.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fixincludes/fixfixes.c b/fixincludes/fixfixes.c index 19fa27ed121..ade3c4dc5bf 100644 --- a/fixincludes/fixfixes.c +++ b/fixincludes/fixfixes.c @@ -3,7 +3,7 @@ Test to see if a particular fix should be applied to a header file. - Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003 + Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc. = = = = = = = = = = = = = = = = = = = = = = = = = @@ -749,6 +749,8 @@ main( int argc, char** argv ) return EXIT_FAILURE; } + initialize_opts (); + { char* pz = argv[1]; long idx; |