summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-12-08 16:23:51 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-12-08 16:23:51 +0000
commit64f2cc0635008f63a97601035618c40c75482b6a (patch)
treeba16f88217cbc4617cebe27b62f570b1e27288c3 /configure.in
parenta93a8031f17f258f7b4b6b569c26aed6e3d14649 (diff)
Fix threading test.
Add threading demo from 2.0, with minor improvements to make the prime number generation faster/more realistic. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1823 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 4b8499920..9a03cc3e8 100644
--- a/configure.in
+++ b/configure.in
@@ -1,7 +1,7 @@
dnl -*- sh -*-
dnl the "configure" script is made from this by running GNU "autoconf"
dnl
-dnl "$Id: configure.in,v 1.33.2.31.2.37 2001/12/06 22:16:48 easysw Exp $"
+dnl "$Id: configure.in,v 1.33.2.31.2.38 2001/12/08 16:23:51 easysw Exp $"
dnl
dnl Configuration script for the Fast Light Tool Kit (FLTK).
dnl
@@ -313,7 +313,7 @@ case $uname in
AC_SEARCH_LIBS(pthread_create, pthread)
fi
- if test "x$ac_cv_search_pthread" != x; then
+ if test "x$ac_cv_search_pthread_create" != x; then
AC_DEFINE(HAVE_PTHREAD)
fi
@@ -604,5 +604,5 @@ AC_OUTPUT(makeinclude fltk.list fltk-config FL/Makefile)
chmod +x fltk-config
dnl
-dnl End of "$Id: configure.in,v 1.33.2.31.2.37 2001/12/06 22:16:48 easysw Exp $".
+dnl End of "$Id: configure.in,v 1.33.2.31.2.38 2001/12/08 16:23:51 easysw Exp $".
dnl