]> git.saurik.com Git - bison.git/commitdiff
* tests/atconfig.in (CPPFLAGS): Add.
authorAkim Demaille <akim@epita.fr>
Sat, 4 Aug 2001 14:00:09 +0000 (14:00 +0000)
committerAkim Demaille <akim@epita.fr>
Sat, 4 Aug 2001 14:00:09 +0000 (14:00 +0000)
* tests/calc.at (AT_CHECK): Use CPPFLAGS.

ChangeLog
Makefile.in
THANKS
tests/atconfig.in
tests/calc.at

index adc0c0e50120c60101305b535c2c60faf36fcf44..39004cb0a924c2001fd45b333040ab8014d924f0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-08-04  Pascal Bart  <pascal.bart@epita.fr>
+
+       * tests/atconfig.in (CPPFLAGS): Add.
+       * tests/calc.at (AT_CHECK): Use CPPFLAGS.
+
 2001-08-03  Akim Demaille  <akim@epita.fr>
 
        Version 1.28b.
 2001-08-03  Akim Demaille  <akim@epita.fr>
 
        Version 1.28b.
index 4f731e3fd872cdb9a00410501f63b9e72a3025bc..a2a2c472061115570123a2ca85d134187c972651 100644 (file)
@@ -122,7 +122,7 @@ CONFIG_HEADER = config.h
 CONFIG_CLEAN_FILES = 
 DIST_COMMON =  README ./stamp-h.in ABOUT-NLS AUTHORS COPYING ChangeLog \
 INSTALL Makefile.am Makefile.in NEWS README-alpha THANKS aclocal.m4 \
 CONFIG_CLEAN_FILES = 
 DIST_COMMON =  README ./stamp-h.in ABOUT-NLS AUTHORS COPYING ChangeLog \
 INSTALL Makefile.am Makefile.in NEWS README-alpha THANKS aclocal.m4 \
-config.hin configure configure.in
+config.hin configure configure.in missing mkinstalldirs
 
 
 DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
 
 
 DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
diff --git a/THANKS b/THANKS
index 82eb848b2f8864db535819c161589a0ebc29db56..cee425f8bc921112e6590f56653a4cce2204609e 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -10,6 +10,7 @@ Laurent Mascherpa     laurent.mascherpa@epita.fr
 Marc Autret             autret_m@epita.fr
 Neil Booth             NeilB@earthling.net
 Noah Friedman                  friedman@gnu.org
 Marc Autret             autret_m@epita.fr
 Neil Booth             NeilB@earthling.net
 Noah Friedman                  friedman@gnu.org
+Pascal Bart             pascal.bart@epita.fr
 Paul Eggert            eggert@twinsun.com
 Piotr Gackiewicz       gacek@intertel.com.pl
 Richard Stallman       rms@gnu.org
 Paul Eggert            eggert@twinsun.com
 Piotr Gackiewicz       gacek@intertel.com.pl
 Richard Stallman       rms@gnu.org
index 1ca75cea09a756a37cdafa23194379fa0522110a..16d5fad61205d86f2447af89a9d879bc2ab9a0fa 100644 (file)
@@ -85,6 +85,7 @@ M4='@M4@'
 # We need a C compiler.
 CC='@CC@'
 CFLAGS='@CFLAGS@'
 # We need a C compiler.
 CC='@CC@'
 CFLAGS='@CFLAGS@'
+CPPFLAGS='-I$(top_srcdir) @CPPFLAGS@'
 
 # We want to use the files shipped with Bison.
 BISON_SIMPLE=$at_top_srcdir/src/bison.simple
 
 # We want to use the files shipped with Bison.
 BISON_SIMPLE=$at_top_srcdir/src/bison.simple
index 2031154ebb17a2f1a37d1ab837006b822769c918..3fa7aa6128ed25802361e55d3d5485d850d38593 100644 (file)
@@ -293,7 +293,7 @@ AT_DATA_CALC_Y([$1])
 # Specify the output files to avoid problems on different file systems.
 AT_CHECK([bison calc.y -o calc.c patsubst([$1], [--yyerror-verbose])],
          [0], [], [])
 # Specify the output files to avoid problems on different file systems.
 AT_CHECK([bison calc.y -o calc.c patsubst([$1], [--yyerror-verbose])],
          [0], [], [])
-AT_CHECK([$CC $CFLAGS calc.c -o calc], 0, [], [])
+AT_CHECK([$CC $CFLAGS $CPPFLAGS calc.c -o calc], 0, [], [])
 
 # Test the priorities.
 _AT_CHECK_CALC([$1],
 
 # Test the priorities.
 _AT_CHECK_CALC([$1],