diff options
author | Benjamin Kosnik <bkoz@milou.soma.redhat.com> | 2000-05-25 13:19:15 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-05-25 13:19:15 +0000 |
commit | 39e09fba96e6e787c4c96052682b3e0603ee9a2d (patch) | |
tree | 6e99fceab67f8249ff73abb82fbdccecd0034f8d | |
parent | 5b80666b99730e7b9a53aa25debfacaf017df8d8 (diff) | |
download | gcc-39e09fba96e6e787c4c96052682b3e0603ee9a2d.zip gcc-39e09fba96e6e787c4c96052682b3e0603ee9a2d.tar.gz gcc-39e09fba96e6e787c4c96052682b3e0603ee9a2d.tar.bz2 |
inclosure: Change to...
2000-05-25 Benjamin Kosnik <bkoz@milou.soma.redhat.com>
* inclosure: Change to...
* mkinclosure: This.
Fix paths to bash.
* mkcshadow: Fix paths to bash.
* src/Makefile.am: Tweaks. Do cshadow header trickery at build time.
* src/Makefile.in: Regnerate.
* acinclude.m4 (GLIBCPP_COMPILER_VERSION): Fix typo.
(GLIBCPP_ENABLE_SHADOW): Do a less gross hack.
* aclocal.m4: Regenerate.
* mkcheck.in (INC_PATH): Tweak.
* configure.in: Enable long long by default.
* configure: Regenerate.
* mkcheck.in (LIB_PATH): Revert.
From-SVN: r34167
-rw-r--r-- | libstdc++-v3/ChangeLog | 1 | ||||
-rwxr-xr-x | libstdc++-v3/mkcheck.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 14160ed..8036a63 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -10,6 +10,7 @@ * acinclude.m4 (GLIBCPP_COMPILER_VERSION): Fix typo. (GLIBCPP_ENABLE_SHADOW): Do a less gross hack. * aclocal.m4: Regenerate. + * mkcheck.in (INC_PATH): Tweak. * configure.in: Enable long long by default. * configure: Regenerate. diff --git a/libstdc++-v3/mkcheck.in b/libstdc++-v3/mkcheck.in index 5dacf27..bbcb2a6 100755 --- a/libstdc++-v3/mkcheck.in +++ b/libstdc++-v3/mkcheck.in @@ -54,7 +54,7 @@ fi # INC_PATH == include path to new headers for use on gcc command-line if [ $WHICH != "1" ]; then - INC_PATH="-I$BUILD_DIR -I$BUILD_DIR/libio -I$SRC_DIR/@ctype_include_dir@ -I$SRC_DIR/@cpu_include_dir@ -I$SRC_DIR/std -I$SRC_DIR -I$SRC_DIR/libio" + INC_PATH="@CSHADOWFLAGS@ @CSHADOW_INCLUDES@ -I$BUILD_DIR -I$BUILD_DIR/libio -I$SRC_DIR/@ctype_include_dir@ -I$SRC_DIR/@cpu_include_dir@ -I$SRC_DIR/std -I$SRC_DIR -I$SRC_DIR/libio" elif [ $WHICH -eq 1 ]; then INC_PATH="" fi |