configure.ac: Don't define NO_SIGSET and NO_DEBUGGING while cross-compiling.
authorDavid Daney <ddaney@avtrex.com>
Wed, 17 Jan 2007 23:03:22 +0000 (23:03 +0000)
committerDavid Daney <daney@gcc.gnu.org>
Wed, 17 Jan 2007 23:03:22 +0000 (23:03 +0000)
* configure.ac: Don't define NO_SIGSET and NO_DEBUGGING while
cross-compiling.
* configure: Regenerated.
* include/gc_config.h.in: Regenerated.

From-SVN: r120883

boehm-gc/ChangeLog
boehm-gc/configure
boehm-gc/configure.ac
boehm-gc/include/gc_config.h.in

index 17a59b6..24b4d35 100644 (file)
@@ -1,3 +1,10 @@
+2007-01-17  David Daney  <ddaney@avtrex.com>
+
+       * configure.ac: Don't define NO_SIGSET and NO_DEBUGGING while
+       cross-compiling.
+       * configure: Regenerated.
+       * include/gc_config.h.in: Regenerated.
+
 2007-01-17  Mike Stump  <mrs@apple.com>
 
        * os_dep.c: Fix i686-apple-darwin9 builds.
index 0d44e6b..8d34fbd 100755 (executable)
@@ -7624,19 +7624,6 @@ cat >>confdefs.h <<\_ACEOF
 _ACEOF
 
 
-if test -n "${with_cross_host}"; then
-
-cat >>confdefs.h <<\_ACEOF
-#define NO_SIGSET 1
-_ACEOF
-
-
-cat >>confdefs.h <<\_ACEOF
-#define NO_DEBUGGING 1
-_ACEOF
-
-fi
-
 # Check whether --enable-gc-debug or --disable-gc-debug was given.
 if test "${enable_gc_debug+set}" = set; then
   enableval="$enable_gc_debug"
index 2beaa1c..afc014d 100644 (file)
@@ -488,14 +488,6 @@ AC_DEFINE(JAVA_FINALIZATION,1,[make it somewhat safer to finalize objects out of
 AC_DEFINE(GC_GCJ_SUPPORT,1,[include support for gcj])
 AC_DEFINE(ATOMIC_UNCOLLECTABLE,1,[include code for GC_malloc_atomic_uncollectable])
 
-dnl This is something of a hack.  When cross-compiling we turn off
-dnl some functionality. These is only correct when targetting an
-dnl embedded system.  FIXME.
-if test -n "${with_cross_host}"; then
-   AC_DEFINE(NO_SIGSET,1,[use empty GC_disable_signals and GC_enable_signals])
-   AC_DEFINE(NO_DEBUGGING,1,[removes GC_dump])
-fi
-
 AC_ARG_ENABLE(gc-debug,
 [  --enable-gc-debug   include full support for pointer backtracing etc.],
 [ if test "$enable_gc_debug" = "yes"; then
index ef907ae..b754e33 100644 (file)
 /* Enable GC_PRINT_BACK_HEIGHT environment variable */
 #undef MAKE_BACK_GRAPH
 
-/* removes GC_dump */
-#undef NO_DEBUGGING
-
 /* cause some or all of the heap to not have execute permission */
 #undef NO_EXECUTE_PERMISSION
 
 /* does not disable signals */
 #undef NO_SIGNALS
 
-/* use empty GC_disable_signals and GC_enable_signals */
-#undef NO_SIGSET
-
 /* Define to the address where bug reports for this package should be sent. */
 #undef PACKAGE_BUGREPORT