aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@redhat.com>2004-03-17 08:50:32 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2004-03-17 08:50:32 +0000
commit87599abdc5cce3b2f8c5956c1fa621a26795314f (patch)
tree6c6a17e8d1cc7352ba8032f376e08ab42f1eb0ab
parente20036e26c8d69a8f9f1bcba5a88c69e12908dad (diff)
downloadgcc-87599abdc5cce3b2f8c5956c1fa621a26795314f.zip
gcc-87599abdc5cce3b2f8c5956c1fa621a26795314f.tar.gz
gcc-87599abdc5cce3b2f8c5956c1fa621a26795314f.tar.bz2
acinclude.m4 (GLIBCXX_ENABLE_ALLOCATOR): Default setting is new_allocator for all hosts.
2004-03-16 Benjamin Kosnik <bkoz@redhat.com> * acinclude.m4 (GLIBCXX_ENABLE_ALLOCATOR): Default setting is new_allocator for all hosts. * configure: Regenerate. From-SVN: r79582
-rw-r--r--libstdc++-v3/ChangeLog6
-rw-r--r--libstdc++-v3/acinclude.m415
-rwxr-xr-xlibstdc++-v3/configure15
3 files changed, 6 insertions, 30 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 247ddaf..89069aa 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,9 @@
+2004-03-16 Benjamin Kosnik <bkoz@redhat.com>
+
+ * acinclude.m4 (GLIBCXX_ENABLE_ALLOCATOR): Default setting is
+ new_allocator for all hosts.
+ * configure: Regenerate.
+
2004-03-16 Paolo Carlini <pcarlini@suse.de>
* testsuite/22_locale/num_put/put/char/4.cc: Fix for 64-bit pointers.
diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4
index e9ba13f..9a53a7a 100644
--- a/libstdc++-v3/acinclude.m4
+++ b/libstdc++-v3/acinclude.m4
@@ -1195,21 +1195,6 @@ AC_DEFUN([GLIBCXX_ENABLE_ALLOCATOR], [
# Default to "new".
if test $enable_libstdcxx_allocator_flag = auto; then
case ${target_os} in
- freebsd*)
- enable_libstdcxx_allocator_flag=mt
- ;;
- hpux11*)
- enable_libstdcxx_allocator_flag=mt
- ;;
- irix6*)
- enable_libstdcxx_allocator_flag=mt
- ;;
- linux* | gnu* | kfreebsd*-gnu | knetbsd*-gnu)
- enable_libstdcxx_allocator_flag=mt
- ;;
- solaris*)
- enable_libstdcxx_allocator_flag=mt
- ;;
*)
enable_libstdcxx_allocator_flag=new
;;
diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure
index c82bf3f..571f5d5 100755
--- a/libstdc++-v3/configure
+++ b/libstdc++-v3/configure
@@ -6291,21 +6291,6 @@ fi;
# Default to "new".
if test $enable_libstdcxx_allocator_flag = auto; then
case ${target_os} in
- freebsd*)
- enable_libstdcxx_allocator_flag=mt
- ;;
- hpux11*)
- enable_libstdcxx_allocator_flag=mt
- ;;
- irix6*)
- enable_libstdcxx_allocator_flag=mt
- ;;
- linux* | gnu* | kfreebsd*-gnu | knetbsd*-gnu)
- enable_libstdcxx_allocator_flag=mt
- ;;
- solaris*)
- enable_libstdcxx_allocator_flag=mt
- ;;
*)
enable_libstdcxx_allocator_flag=new
;;