diff options
author | megacz <megacz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-11 18:31:10 +0000 |
---|---|---|
committer | megacz <megacz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-11 18:31:10 +0000 |
commit | 6bb77977fc5d8a828b2657ea215fa78b8ee12079 (patch) | |
tree | 380aead484288c61e65327448a2aa5a3a50014ca /boehm-gc/configure.in | |
parent | 6ed576566558a5244ee361570888f41003d7e76f (diff) | |
download | ppe42-gcc-6bb77977fc5d8a828b2657ea215fa78b8ee12079.tar.gz ppe42-gcc-6bb77977fc5d8a828b2657ea215fa78b8ee12079.zip |
2002-02-11 Adam Megacz <adam@xwt.org>
* gcc/boehm-gc/configure.in: support for win32, saner
cross-compile options
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49681 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc/configure.in')
-rw-r--r-- | boehm-gc/configure.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/boehm-gc/configure.in b/boehm-gc/configure.in index 2d5803b0f57..661d0189725 100644 --- a/boehm-gc/configure.in +++ b/boehm-gc/configure.in @@ -108,7 +108,10 @@ case "$THREADS" in ;; esac ;; - decosf1 | irix | mach | os2 | solaris | win32 | dce | vxworks) + win32) + AC_DEFINE(GC_WIN32_THREADS) + ;; + decosf1 | irix | mach | os2 | solaris | dce | vxworks) AC_MSG_ERROR(thread package $THREADS not yet supported) ;; *) @@ -226,12 +229,10 @@ AC_DEFINE(GC_GCJ_SUPPORT) AC_DEFINE(ATOMIC_UNCOLLECTABLE) dnl This is something of a hack. When cross-compiling we turn off -dnl some functionality. We also enable the "small" configuration. -dnl These is only correct when targetting an embedded system. FIXME. +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) - AC_DEFINE(NO_CLOCK) - AC_DEFINE(SMALL_CONFIG) AC_DEFINE(NO_DEBUGGING) fi |