* configure.in: Enable workaround for COOP-linuxthreads

compatibility on Linux systems.
This commit is contained in:
Mikael Djurfeldt 2000-03-29 10:44:13 +00:00
commit e4d2166f80

View file

@ -468,10 +468,10 @@ if test "${THREAD_PACKAGE}" != "" ; then
fi
## Workaround for linuxthreads (currently disabled)
#if test $host_os = linux-gnu; then
# AC_DEFINE(GUILE_PTHREAD_COMPAT, 1)
# AC_CHECK_LIB(pthread, main)
#fi
if test $host_os = linux-gnu; then
AC_DEFINE(GUILE_PTHREAD_COMPAT, 1)
AC_CHECK_LIB(pthread, main)
fi
fi
## If we're using GCC, ask for aggressive warnings.