From: Fabian Keil Date: Thu, 18 Jan 2007 14:55:45 +0000 (+0000) Subject: Check for tzset() and putenv() to make sure the X-Git-Tag: v_3_0_7~390 X-Git-Url: http://www.privoxy.org/gitweb/templates.html?a=commitdiff_plain;h=e4b5b93ead82c9979c012295ac0ec1e818a64873;p=privoxy.git Check for tzset() and putenv() to make sure the replacement timegm() isn't included on systems where it fails to compile. --- diff --git a/configure.in b/configure.in index ea9764f1..0f9f97e0 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.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 =================================================================