Commit 0ff95153 by Tom Tromey Committed by Tom Tromey

configure: Rebuilt.

	* configure: Rebuilt.
	* configure.in: Always ask gcc for threads package.

From-SVN: r45052
parent c8a6b916
2001-08-20 Tom Tromey <tromey@redhat.com>
* configure: Rebuilt.
* configure.in: Always ask gcc for threads package.
2001-08-17 Tom Tromey <tromey@redhat.com> 2001-08-17 Tom Tromey <tromey@redhat.com>
* Makefile.am, acinclude.m4, configure.in: Imported GC 6.0 and * Makefile.am, acinclude.m4, configure.in: Imported GC 6.0 and
......
...@@ -41,15 +41,12 @@ if false; then ...@@ -41,15 +41,12 @@ if false; then
AC_EXEEXT AC_EXEEXT
fi fi
AC_MSG_CHECKING([for threads package to use]) AC_MSG_CHECKING([for thread model used by GCC])
AC_ARG_ENABLE(threads, [ --enable-threads=TYPE choose threading package], THREADS=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'`
THREADS=$enableval, if test -z "$THREADS"; then
[ AC_MSG_CHECKING([for thread model used by GCC]) THREADS=no
THREADS=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'` fi
if test -z "$THREADS"; then AC_MSG_RESULT([$THREADS])
THREADS=no
fi
AC_MSG_RESULT([$THREADS])])
AC_ARG_ENABLE(parallel-mark, AC_ARG_ENABLE(parallel-mark,
[ --enable-parallel-mark parallelize marking and free list construction], [ --enable-parallel-mark parallelize marking and free list construction],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment