]> git.mxchange.org Git - simgear.git/commitdiff
Fix a silly bug where is tested against the wrong variable
authorehofman <ehofman>
Wed, 9 Jul 2003 19:46:04 +0000 (19:46 +0000)
committerehofman <ehofman>
Wed, 9 Jul 2003 19:46:04 +0000 (19:46 +0000)
configure.ac

index 83ac0404be0a03532d1b8dda56d0fabab6b89c43..027275e63d16c4f6038b7c235c7ec723dcf0c7e6 100644 (file)
@@ -164,7 +164,7 @@ if test "x$ac_cv_lib_pthread_pthread_exit" != "xyes" -a "x$ac_cv_header_pthread_
     LIBS=$save_LIBS
 fi
 
     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)
 
 
 AC_SEARCH_LIBS(inet_addr, xnet)