diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-10-13 05:00:26 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2006-10-13 05:00:26 +0000 |
commit | 231ed89af1eaff303a22f72aeb1c2c0cf5e25c21 (patch) | |
tree | 54cd15696d0c0557b3ebe503f80e26aa72781a9e /djgpp | |
parent | 46356ea426a503063c5e382401a7f5487f4e29bd (diff) | |
download | bison-231ed89af1eaff303a22f72aeb1c2c0cf5e25c21.tar.gz |
* bootstrap.conf (gnulib_modules): Add config-h.
* djgpp/subpipe.c: Include <config.h> unconditionally; don't
worry about HAVE_CONFIG_H.
* lib/abitset.c: Likewise.
* lib/bitset.c: Likewise.
* lib/bitset_stats.c: Likewise.
* lib/bitsetv-print.c: Likewise.
* lib/bitsetv.c: Likewise.
* lib/ebitset.c: Likewise.
* lib/get-errno.c: Likewise.
* lib/lbitset.c: Likewise.
* lib/subpipe.c: Likewise.
* lib/timevar.c: Likewise.
* lib/vbitset.c: Likewise.
* lib/bitset.c: Include "bitset.h" first, to test interface.
* lib/bitset_stats.c: Include "bitset_stats.h" first.
* lib/bitsetv-print.c: Include "bitsetv-print.h" first.
* lib/bitsetv.c: Include "bitsetv.h" first.
* lib/get-errno.c: Include "get-errno.h" first.
* m4/.cvsignore: Add config-h.m4.
* tests/actions.at (Default %printer and %destructor for ...):
Adjust expected line numbers in output to reflect removal of #if
HAVE_CONFIG_H lines.
* tests/glr-regression.at (Missed %merge type warnings when ...):
Likewise.
* tests/regression.at (Braced code in declaration in rules section):
Likewise.
* tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
* tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
Include <config.h> unconditionally.
Diffstat (limited to 'djgpp')
-rw-r--r-- | djgpp/subpipe.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/djgpp/subpipe.c b/djgpp/subpipe.c index 33e2a382..96117b9a 100644 --- a/djgpp/subpipe.c +++ b/djgpp/subpipe.c @@ -19,9 +19,7 @@ /* Written by Juan Manuel Guerrero <juan.guerrero@gmx.de>. */ -#ifdef HAVE_CONFIG_H -# include <config.h> -#endif +#include <config.h> #include "subpipe.h" |