diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-08-27 19:57:24 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-08-27 19:57:24 +0000 |
commit | 298784d80ef5b748dd38e9b22c8cbeb390497d96 (patch) | |
tree | c19e9254486ec0b5ea6434f86c9149c700715127 | |
parent | 88e4aed3971cf1fff81921715298b50fed781441 (diff) | |
download | tinyproxy-298784d80ef5b748dd38e9b22c8cbeb390497d96.tar.gz tinyproxy-298784d80ef5b748dd38e9b22c8cbeb390497d96.zip |
Fixed a problem with the POSIX threading on FreeBSD systems.
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 55782f0..058b01f 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -dnl $Id: configure.in,v 1.19 2001-08-27 17:47:25 rjkaes Exp $ +dnl $Id: configure.in,v 1.20 2001-08-27 19:57:24 rjkaes Exp $ dnl Devlopers, please strive to achieve this order: dnl @@ -107,7 +107,7 @@ else CFLAGS="-D_REENTRANT $CFLAGS" else AC_CHECK_LIB(c_r, pthread_create) - if test "$ac_cv_c_r_pthread_create" = "yes"; then + if test "$ac_cv_lib_c_r_pthread_create" = "yes"; then CFLAGS="-pthread -D_REENTRANT $CFLAGS" else AC_MSG_ERROR(You must have a POSIX compliant threading library installed) |