User: crestani
  Date: 06/07/19 21:35:31
  Modified:    xemacs   ChangeLog configure configure.ac
Log:
2006-07-18  Marcus Crestani  <crestani(a)xemacs.org>
	* configure.ac: Intel-based Macs can use POSIX-style write
	barrier.  Use $machine to determine this.
Revision  Changes    Path
1.510     +5 -0      XEmacs/xemacs/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/ChangeLog,v
retrieving revision 1.509
retrieving revision 1.510
diff -u -p -r1.509 -r1.510
--- ChangeLog	2006/07/19 16:36:37	1.509
+++ ChangeLog	2006/07/19 19:35:20	1.510
@@ -1,3 +1,8 @@
+2006-07-18  Marcus Crestani  <crestani(a)xemacs.org>
+
+	* configure.ac: Intel-based Macs can use POSIX-style write
+	barrier.  Use $machine to determine this.
+
 2006-07-20  Stephen J. Turnbull  <stephen(a)xemacs.org>
 
 	* configure.ac (system-packages,legacy-packages): Fix help strings.
1.285     +4 -1      XEmacs/xemacs/configure
Index: configure
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/configure,v
retrieving revision 1.284
retrieving revision 1.285
diff -u -p -r1.284 -r1.285
--- configure	2006/07/19 16:36:30	1.284
+++ configure	2006/07/19 19:35:20	1.285
@@ -4761,10 +4761,13 @@ fi
 if test "$enable_newgc" = "yes"; then
   if test "$enable_vdb" = "auto"; then
     case "$opsys" in
-      darwin )  cat >>confdefs.h <<\_ACEOF
+      darwin )  case "$machine" in
+		  i686 ) check_vdb_posix=yes ;;
+		  * ) cat >>confdefs.h <<\_ACEOF
 #define VDB_MACH 1
 _ACEOF
   have_vdb_mach=yes ;;
+		esac ;;
       cygwin* ) cat >>confdefs.h <<\_ACEOF
 #define VDB_WIN32 1
 _ACEOF
1.47      +4 -1      XEmacs/xemacs/configure.ac
Index: configure.ac
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/configure.ac,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -p -r1.46 -r1.47
--- configure.ac	2006/07/19 16:36:35	1.46
+++ configure.ac	2006/07/19 19:35:25	1.47
@@ -1767,7 +1767,10 @@ fi
 if test "$enable_newgc" = "yes"; then
   if test "$enable_vdb" = "auto"; then
     case "$opsys" in
-      darwin )  AC_DEFINE(VDB_MACH)  have_vdb_mach=yes ;;
+      darwin )  case "$machine" in
+		  i686 ) check_vdb_posix=yes ;;
+		  * ) AC_DEFINE(VDB_MACH)  have_vdb_mach=yes ;;
+		esac ;;
       cygwin* ) AC_DEFINE(VDB_WIN32) have_vdb_win32=yes ;;
       linux* )  check_vdb_posix=yes ;;
       freebsd ) check_vdb_posix=yes ;;
    
    
    
 
                    
                    
                        
                        Show replies by date