1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-03 02:36:19 +02:00

* configure.in: Enable workaround for COOP-linuxthreads

compatibility on Linux systems (currently disabled).
This commit is contained in:
Mikael Djurfeldt 2000-03-29 01:54:12 +00:00
parent 25f457c0e2
commit ed65453e53

View file

@ -466,6 +466,12 @@ if test "${THREAD_PACKAGE}" != "" ; then
test $ac_cv_func_select = yes; then
AC_DEFINE(GUILE_ISELECT, 1)
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
fi
## If we're using GCC, ask for aggressive warnings.