|
From: Carlo W. <li...@us...> - 2002-01-05 03:25:53
|
CVSROOT : /cvsroot/libcw
Module : src
Commit time: 2002-00-05 03:25:53 UTC
Modified files:
libcwd/configure.in
Log message:
Bug fix.
---------------------- diff included ----------------------
Index: src/libcwd/configure.in
diff -u src/libcwd/configure.in:1.87 src/libcwd/configure.in:1.88
--- src/libcwd/configure.in:1.87 Sun Dec 30 13:18:16 2001
+++ src/libcwd/configure.in Fri Jan 4 19:25:43 2002
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
-AC_REVISION($Revision: 1.87 $)dnl
+AC_REVISION($Revision: 1.88 $)dnl
dnl General intialization of `autoconf' varaibles.
dnl Ensure that the directory specified with --srcdir was correct
@@ -359,7 +359,10 @@
CW_CONFIG_THREAD_SAFE=1
TESTOPTS=-D_REENTRANT
+ SAVE_LIBS="$LIBS"
+ LIBS="$LIBS $LIB_THREADS"
AC_CHECK_FUNCS(pthread_kill_other_threads_np)
+ LIBS="$SAVE_LIBS"
fi
dnl This test needs the full set of libraries we just determined.
----------------------- End of diff -----------------------
|