* configure.in: Enable workaround for COOP-linuxthreads
authorMikael Djurfeldt <djurfeldt@nada.kth.se>
Wed, 29 Mar 2000 01:54:12 +0000 (01:54 +0000)
committerMikael Djurfeldt <djurfeldt@nada.kth.se>
Wed, 29 Mar 2000 01:54:12 +0000 (01:54 +0000)
compatibility on Linux systems (currently disabled).

configure.in

index b29d008..225d069 100644 (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.