diff options
author | Tom Tromey <tromey@cygnus.com> | 1999-11-01 23:15:51 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 1999-11-01 23:15:51 +0000 |
commit | 20bbd3cd53a80ddafa56a5d21337aae0c24f94ca (patch) | |
tree | 9c24ba1ebabff472b9caddbff07ef957dbf2c24c /boehm-gc/configure.in | |
parent | c05ddfa745d68f6d9db1a7d0992650a41986d376 (diff) | |
download | gcc-20bbd3cd53a80ddafa56a5d21337aae0c24f94ca.tar.gz |
Merged GC 5.0alpha4 with local changes, plus:
* Makefile.in: Rebuilt.
* Makefile.am (gctest_LDADD): Added THREADLIB.
(TESTS): New macro.
* configure: Rebuilt.
* configure.in (INCLUDES): New subst.
From-SVN: r30332
Diffstat (limited to 'boehm-gc/configure.in')
-rw-r--r-- | boehm-gc/configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/boehm-gc/configure.in b/boehm-gc/configure.in index 182277a3cd4..29725423b2a 100644 --- a/boehm-gc/configure.in +++ b/boehm-gc/configure.in @@ -62,6 +62,7 @@ if test "$THREADS" = yes; then fi INCLUDES= +THREADLIB= case "$THREADS" in no | none | single) THREADS=none @@ -81,10 +82,12 @@ case "$THREADS" in AC_DEFINE(IRIX_THREADS) ;; esac + THREADLIB=-lpthread ;; qt) AC_DEFINE(QUICK_THREADS) INCLUDES="-I${boehm_gc_basedir}/../qthreads" + THREADLIB=../qthreads/libgcjcoop.la ;; decosf1 | irix | mach | os2 | solaris | win32 | dce | vxworks) AC_MSG_ERROR(thread package $THREADS not yet supported) @@ -94,6 +97,7 @@ case "$THREADS" in ;; esac AC_MSG_RESULT($THREADS) +AC_SUBST(THREADLIB) AC_ARG_ENABLE(java-gc, changequote(<<,>>)dnl |