Bumped up the version number.

Added a test for FreeBSD so that it can set GCC to compile with POSIX
threading.
This commit is contained in:
Robert James Kaes 2001-08-27 17:47:25 +00:00
parent f7d0ea8784
commit 23b44e67df

View File

@ -1,4 +1,4 @@
dnl $Id: configure.in,v 1.18 2001-08-27 03:47:47 rjkaes Exp $
dnl $Id: configure.in,v 1.19 2001-08-27 17:47:25 rjkaes Exp $
dnl Devlopers, please strive to achieve this order:
dnl
@ -19,7 +19,7 @@ AC_INIT()
AC_CANONICAL_SYSTEM
AC_DEFINE_UNQUOTED(TARGET_SYSTEM, "$target")
AM_INIT_AUTOMAKE(tinyproxy,1.4.1.3)
AM_INIT_AUTOMAKE(tinyproxy,1.4.1.4)
AM_CONFIG_HEADER(config.h)
dnl
@ -106,7 +106,12 @@ else
if test "$ac_cv_lib_pthreads_pthread_create" = "yes"; then
CFLAGS="-D_REENTRANT $CFLAGS"
else
AC_MSG_ERROR(You must have a POSIX compliant threading library installed)
AC_CHECK_LIB(c_r, pthread_create)
if test "$ac_cv_c_r_pthread_create" = "yes"; then
CFLAGS="-pthread -D_REENTRANT $CFLAGS"
else
AC_MSG_ERROR(You must have a POSIX compliant threading library installed)
fi
fi
fi