diff options
author | Benjamin Kosnik <bkoz@soma.redhat.com> | 2000-07-08 01:25:04 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-07-08 01:25:04 +0000 |
commit | 0828a0bd1b6f503880c694f106c8424967cb38aa (patch) | |
tree | fdaaf825d1e0456cba179da0b51404f5dc72d776 | |
parent | 6eaa6abdbc7298fe5e44aaa3eb4e2e25a543c1c1 (diff) | |
download | gcc-0828a0bd1b6f503880c694f106c8424967cb38aa.zip gcc-0828a0bd1b6f503880c694f106c8424967cb38aa.tar.gz gcc-0828a0bd1b6f503880c694f106c8424967cb38aa.tar.bz2 |
configure.in (AC_OUTPUT_COMMANDS): Link $THREADS.h and c++threads.h instead of copying.
2000-07-07 Benjamin Kosnik <bkoz@soma.redhat.com>
* configure.in (AC_OUTPUT_COMMANDS): Link $THREADS.h and
c++threads.h instead of copying.
* acinclude.m4 (GLIBCPP_ENABLE_THREADS): Do link here.
Tweaks.
From-SVN: r34918
-rw-r--r-- | libstdc++-v3/ChangeLog | 3 | ||||
-rw-r--r-- | libstdc++-v3/acinclude.m4 | 2 | ||||
-rw-r--r-- | libstdc++-v3/aclocal.m4 | 2 | ||||
-rwxr-xr-x | libstdc++-v3/configure | 2 |
4 files changed, 5 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index fc990c9..011196a 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -15,7 +15,8 @@ * configure.in (AC_OUTPUT_COMMANDS): Link $THREADS.h and c++threads.h instead of copying. * acinclude.m4 (GLIBCPP_ENABLE_THREADS): Do link here. - + Tweaks. + * config/c_io_libio.cc (__basic_file::_M_open_mode): Consolidate. * bits/basic_file.h: Declare. diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index ca61aa6..bc9f8f9 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -1266,7 +1266,7 @@ AC_DEFUN(GLIBCPP_ENABLE_THREADS, [ ;; posix | pthreads) THREADS=posix - case "$host" in + case "$target" in *-*-linux*) ;; esac diff --git a/libstdc++-v3/aclocal.m4 b/libstdc++-v3/aclocal.m4 index 45063a2..5be3479 100644 --- a/libstdc++-v3/aclocal.m4 +++ b/libstdc++-v3/aclocal.m4 @@ -1278,7 +1278,7 @@ AC_DEFUN(GLIBCPP_ENABLE_THREADS, [ ;; posix | pthreads) THREADS=posix - case "$host" in + case "$target" in *-*-linux*) ;; esac diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 5260280..62eba44 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -2529,7 +2529,7 @@ fi ;; posix | pthreads) THREADS=posix - case "$host" in + case "$target" in *-*-linux*) ;; esac |