diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-17 20:56:35 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-17 20:56:35 +0000 |
commit | 9fd6a9eaa9948eb998b2b9b9922453b4d6e0ad5b (patch) | |
tree | 651f7cdca4bff3a5cbfdc1b492c9f66a801be694 /configure.ac | |
parent | 3e60a5b819e7f7ae2766be5f7c9a9e2296bd7df1 (diff) | |
download | tinyproxy-9fd6a9eaa9948eb998b2b9b9922453b4d6e0ad5b.tar.gz tinyproxy-9fd6a9eaa9948eb998b2b9b9922453b4d6e0ad5b.zip |
Added a test for pthread_cancel() since it's not available on all
platforms.
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 8a94bc6..a01565d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -dnl $Id: configure.ac,v 2.17 2002-04-16 00:23:23 rjkaes Exp $ +dnl $Id: configure.ac,v 2.18 2002-04-17 20:56:35 rjkaes Exp $ dnl Devlopers, please strive to achieve this order: dnl @@ -14,7 +14,7 @@ dnl 8. System services dnl dnl Read the Autoconf manual for details. -AC_INIT([tinyproxy], [1.5.0rc1], [rjkaes@users.sourceforge.net]) +AC_INIT([tinyproxy], [1.5.0rc2], [rjkaes@users.sourceforge.net]) AC_CONFIG_SRCDIR([src/tinyproxy.c]) AC_PREREQ(2.52) @@ -256,9 +256,9 @@ AC_TYPE_SIGNAL AC_FUNC_STRERROR_R AC_FUNC_STRFTIME AC_CHECK_FUNCS([btowc bzero ftruncate gethostbyaddr gethostbyname gethostname \ - inet_ntoa memchr memset re_comp regcomp regexec select \ - setrlimit socket strncasecmp strchr strdup strerror strstr \ - strtol vsyslog vsnprintf]) + inet_ntoa memchr memset pthread_cancel re_comp regcomp \ + regexec select setrlimit socket strncasecmp strchr strdup \ + strerror strstr strtol vsyslog vsnprintf]) AC_CHECK_FUNCS(strlcpy strlcat) |