This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH: Handle atomicity.h configuration for FreeBSD


This patch gets us back to where we were before the grand atomicity.h
reorganization.  Since FreeBSD is not currently bootstrapping against
libstdc++-v3, I can only report that this patch at least now allows
libstdc++-v3/configure --enable-threads\=posix to run without error
and configures our target as it did before the recent reorganization.

2000-11-07  Loren J. Rittle  <ljrittle@acm.org>

	* acinclude.m4 (GLIBCPP_ENABLE_ATOMICITY): Handle FreeBSD.
	* aclocal.m4, configure: Rebuilt.

Index: acinclude.m4
===================================================================
RCS file: /cvs/gcc/egcs/libstdc++-v3/acinclude.m4,v
retrieving revision 1.86
diff -c -r1.86 acinclude.m4
*** acinclude.m4	2000/11/07 02:00:22	1.86
--- acinclude.m4	2000/11/08 00:11:09
***************
*** 1458,1464 ****
  AC_DEFUN(GLIBCPP_ENABLE_ATOMICITY, [
      AC_MSG_CHECKING([for atomicity.h])
      case "$target" in
!       *-*-linux* | sparc*-*-*)
          ATOMICITYH=$cpu_include_dir
          ;;    
        *-*-aix* | *-*-irix*)
--- 1458,1464 ----
  AC_DEFUN(GLIBCPP_ENABLE_ATOMICITY, [
      AC_MSG_CHECKING([for atomicity.h])
      case "$target" in
!       *-*-linux* | sparc*-*-* | *-*-freebsd*)
          ATOMICITYH=$cpu_include_dir
          ;;    
        *-*-aix* | *-*-irix*)

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]