diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2000-11-13 22:14:18 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-11-13 22:14:18 +0000 |
commit | 66dfa1436fd19a02df2ada0e1e2e94e8f733e7fa (patch) | |
tree | fcc1d232cc050b1a243edf221b59e3230f2ba343 | |
parent | d9068c61428f89ce1db4bae6f5adb6acbd8b5b6b (diff) | |
download | gcc-66dfa1436fd19a02df2ada0e1e2e94e8f733e7fa.zip gcc-66dfa1436fd19a02df2ada0e1e2e94e8f733e7fa.tar.gz gcc-66dfa1436fd19a02df2ada0e1e2e94e8f733e7fa.tar.bz2 |
acinclude.m4 (GLIBCPP_ENABLE_ATOMICITY): Handle FreeBSD.
2000-11-12 Loren J. Rittle <ljrittle@acm.org>
* acinclude.m4 (GLIBCPP_ENABLE_ATOMICITY): Handle FreeBSD.
* aclocal.m4, configure: Rebuilt.
From-SVN: r37439
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-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, 8 insertions, 3 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 535d2d8..de6c35c 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2000-11-12 Loren J. Rittle <ljrittle@acm.org> + + * acinclude.m4 (GLIBCPP_ENABLE_ATOMICITY): Handle FreeBSD. + * aclocal.m4, configure: Rebuilt. + 2000-11-12 Brent Verner <brent@rcfile.org> * include/c_std/bits/wrap_langinfo.h: New file. diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index b156aad..dc267fb 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -1458,7 +1458,7 @@ dnl GLIBCPP_ENABLE_ATOMICITY AC_DEFUN(GLIBCPP_ENABLE_ATOMICITY, [ AC_MSG_CHECKING([for atomicity.h]) case "$target" in - *-*-linux* | sparc*-*-*) + *-*-linux* | sparc*-*-* | *-*-freebsd*) ATOMICITYH=$cpu_include_dir ;; *-*-aix* | *-*-irix*) diff --git a/libstdc++-v3/aclocal.m4 b/libstdc++-v3/aclocal.m4 index e3bddf7..6fd5169 100644 --- a/libstdc++-v3/aclocal.m4 +++ b/libstdc++-v3/aclocal.m4 @@ -1470,7 +1470,7 @@ dnl GLIBCPP_ENABLE_ATOMICITY AC_DEFUN(GLIBCPP_ENABLE_ATOMICITY, [ AC_MSG_CHECKING([for atomicity.h]) case "$target" in - *-*-linux* | sparc*-*-*) + *-*-linux* | sparc*-*-* | *-*-freebsd*) ATOMICITYH=$cpu_include_dir ;; *-*-aix* | *-*-irix*) diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index d9ed3ac6..f3ba593 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -3142,7 +3142,7 @@ EOF echo $ac_n "checking for atomicity.h""... $ac_c" 1>&6 echo "configure:3144: checking for atomicity.h" >&5 case "$target" in - *-*-linux* | sparc*-*-*) + *-*-linux* | sparc*-*-* | *-*-freebsd*) ATOMICITYH=$cpu_include_dir ;; *-*-aix* | *-*-irix*) |