diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 22 |
2 files changed, 21 insertions, 5 deletions
@@ -1,3 +1,7 @@ +2000-04-11 Miguel de Icaza <miguel@gnu.org> + + * configure.in (have_pthread): Properly use AC_ARG_WITH + 2000-04-11 Chris Toshok <toshok@helixcode.com> * wombat/Makefile.am (wombat_LDADD): add LDAP_LIBS here. diff --git a/configure.in b/configure.in index 8dbd3190c0..75ce24caed 100644 --- a/configure.in +++ b/configure.in @@ -109,13 +109,25 @@ dnl ************************************************** have_pthread=false -AC_ARG_WITH(threads, [--with-threads include threads support], - [GNOME_PTHREAD_CHECK]) +AC_ARG_WITH(threads, [--with-threads include threads support],[ + if test x$withval = xyes; then + test_thread=true + else + test_thread=false + fi +],[ + test_thread=false +]) -if test "x$PTHREAD_LIB" = "x" ; then - have_pthread=false +if $test_thread; then + GNOME_PTHREAD_CHECK + if test "x$PTHREAD_LIB" = "x" ; then + have_pthread=false + else + have_pthread=true + fi else - have_pthread=true + have_pthread=false fi AM_CONDITIONAL(ENABLE_THREADS, $have_pthread) |