Check for tzset() and putenv() to make sure the
authorFabian Keil <fk@fabiankeil.de>
Thu, 18 Jan 2007 14:55:45 +0000 (14:55 +0000)
committerFabian Keil <fk@fabiankeil.de>
Thu, 18 Jan 2007 14:55:45 +0000 (14:55 +0000)
replacement timegm() isn't included on systems
where it fails to compile.

configure.in

index ea9764f..0f9f97e 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 dnl 
-dnl $Id: configure.in,v 1.100 2007/01/07 07:38:10 joergs Exp $
+dnl $Id: configure.in,v 1.101 2007/01/12 15:20:17 fabiankeil Exp $
 dnl 
 dnl Written by and Copyright (C) 2001 - 2004 the SourceForge
 dnl Privoxy team. http://www.privoxy.org/
@@ -28,6 +28,10 @@ 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.101  2007/01/12 15:20:17  fabiankeil
+dnl Temporarily ignore external libpcrs to prevent
+dnl problems that are fixed in Privoxy's own version.
+dnl
 dnl Revision 1.100  2007/01/07 07:38:10  joergs
 dnl Disabled -pipe for AmigaOS4.
 dnl
@@ -477,7 +481,7 @@ dnl =================================================================
 dnl AutoConf Initialization
 dnl =================================================================
 
-AC_REVISION($Revision: 1.100 $)
+AC_REVISION($Revision: 1.101 $)
 AC_INIT(jcc.c)
 
 if test ! -f config.h.in; then
@@ -1144,7 +1148,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 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])
+AC_CHECK_FUNCS([atexit getcwd gethostbyaddr gethostbyaddr_r gethostbyname gethostbyname_r inet_ntoa localtime_r memchr memmove memset putenv random regcomp select setlocale socket strchr strdup strerror strftime strptime strstr strtoul timegm tzset])
 
 
 dnl =================================================================