X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=configure.in;h=190d752ad12c71bb16072989a7e987c2aa4b0944;hb=721191b1d232748a8c374bb97f750ca6acd609dd;hp=2fd47c63dbf6014aa6931d0b9e061d9b03dba1f1;hpb=178333f817f4b976d0c4eb784dc4f12d7cae0488;p=privoxy.git diff --git a/configure.in b/configure.in index 2fd47c63..190d752a 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. dnl -dnl $Id: configure.in,v 1.91 2006/08/13 22:01:51 fabiankeil Exp $ +dnl $Id: configure.in,v 1.94 2006/11/13 19:05:50 fabiankeil Exp $ dnl dnl Written by and Copyright (C) 2001 - 2004 the SourceForge dnl Privoxy team. http://www.privoxy.org/ @@ -28,6 +28,22 @@ dnl or write to the Free Software Foundation, Inc., 59 dnl Temple Place - Suite 330, Boston, MA 02111-1307, USA. dnl dnl $Log: configure.in,v $ +dnl Revision 1.94 2006/11/13 19:05:50 fabiankeil +dnl Make pthread mutex locking more generic. Instead of +dnl checking for OSX and OpenBSD, check for FEATURE_PTHREAD +dnl and use mutex locking unless there is an _r function +dnl available. Better safe than sorry. +dnl +dnl Fixes "./configure --disable-pthread" and should result +dnl in less threading-related problems on pthread-using platforms, +dnl but it still doesn't fix BR#1122404. +dnl +dnl Revision 1.93 2006/09/22 01:26:20 hal9 +dnl Set version to 3.0.5 BETA for hopefully release this weekend. +dnl +dnl Revision 1.92 2006/08/17 17:09:49 fabiankeil +dnl Added check for timegm(). +dnl dnl Revision 1.91 2006/08/13 22:01:51 fabiankeil dnl Added checks for strptime() and random() dnl @@ -441,7 +457,7 @@ dnl ================================================================= dnl AutoConf Initialization dnl ================================================================= -AC_REVISION($Revision: 1.91 $) +AC_REVISION($Revision: 1.94 $) AC_INIT(jcc.c) if test ! -f config.h.in; then @@ -485,9 +501,9 @@ dnl ================================================================= dnl Application version number dnl ================================================================= -VERSION_MAJOR=0 +VERSION_MAJOR=3 VERSION_MINOR=0 -VERSION_POINT=0 +VERSION_POINT=6 CODE_STATUS="UNRELEASED" dnl CODE_STATUS can be "alpha", "beta", or "stable", and will be @@ -1106,7 +1122,7 @@ AC_FUNC_SETPGRP AC_TYPE_SIGNAL dnl uncommenting does not work for swa. suse linux dnl AC_FUNC_STAT -AC_CHECK_FUNCS([atexit getcwd gethostbyaddr gethostbyname inet_ntoa localtime_r memchr memmove memset random regcomp select setlocale socket strchr strdup strerror strftime strptime strstr strtoul timegm]) +AC_CHECK_FUNCS([atexit getcwd gethostbyaddr gethostbyaddr_r gethostbyname gethostbyname_r inet_ntoa localtime_r memchr memmove memset random regcomp select setlocale socket strchr strdup strerror strftime strptime strstr strtoul timegm]) dnl =================================================================