From: ehofman Date: Wed, 9 Jul 2003 19:46:04 +0000 (+0000) Subject: Fix a silly bug where is tested against the wrong variable X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;ds=sidebyside;h=d4134195ea622fe3e476a69215b0dec5c0a32d99;p=simgear.git Fix a silly bug where is tested against the wrong variable --- diff --git a/configure.ac b/configure.ac index 83ac0404..027275e6 100644 --- a/configure.ac +++ b/configure.ac @@ -164,7 +164,7 @@ if test "x$ac_cv_lib_pthread_pthread_exit" != "xyes" -a "x$ac_cv_header_pthread_ LIBS=$save_LIBS fi -AM_CONDITIONAL(HAVE_THREADS, test "x$ac_cv_lib_c_r_pthread_exit" = "xyes" -a "x$ac_cv_header_pthread_h" = "xyes") +AM_CONDITIONAL(HAVE_THREADS, test "x$ac_cv_lib_pthread_pthread_exit" = "xyes" -a "x$ac_cv_header_pthread_h" = "xyes") AC_SEARCH_LIBS(inet_addr, xnet)