From: Fabian Keil Date: Fri, 12 Oct 2012 11:12:22 +0000 (+0000) Subject: Spread a AC_CHECK_FUNCS() line across one line per checked function to make future... X-Git-Tag: v_3_0_20~258 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=71cc9c2b0fcc58292c43fed7969f692f5e2491f6 Spread a AC_CHECK_FUNCS() line across one line per checked function to make future diffs more readable --- diff --git a/configure.in b/configure.in index 756f9467..c00b2bbe 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.170 2012/10/12 11:11:06 fabiankeil Exp $ +dnl $Id: configure.in,v 1.171 2012/10/12 11:11:42 fabiankeil Exp $ dnl dnl Written by and Copyright (C) 2001-2010 the dnl Privoxy team. http://www.privoxy.org/ @@ -32,7 +32,7 @@ dnl ================================================================= dnl AutoConf Initialization dnl ================================================================= -AC_REVISION($Revision: 1.170 $) +AC_REVISION($Revision: 1.171 $) AC_INIT(jcc.c) if test ! -f config.h.in; then @@ -741,7 +741,40 @@ dnl bcopy is for PCRE AC_CHECK_FUNCS([bcopy]) AC_PROG_GCC_TRADITIONAL AC_TYPE_SIGNAL -AC_CHECK_FUNCS([access atexit getcwd gethostbyaddr gethostbyaddr_r gethostbyname gethostbyname_r gettimeofday inet_ntoa localtime_r memchr memmove memset poll putenv random regcomp select setlocale snprintf socket strchr strdup strerror strftime strlcat strlcpy strptime strstr strtoul timegm tzset]) +AC_CHECK_FUNCS([ \ + access \ + atexit \ + getcwd \ + gethostbyaddr \ + gethostbyaddr_r \ + gethostbyname \ + gethostbyname_r \ + gettimeofday \ + inet_ntoa \ + localtime_r \ + memchr \ + memmove \ + memset \ + poll \ + putenv \ + random \ + regcomp \ + select \ + setlocale \ + snprintf \ + socket \ + strchr \ + strdup \ + strerror \ + strftime \ + strlcat \ + strlcpy \ + strptime \ + strstr \ + strtoul \ + timegm \ + tzset \ +]) dnl Checks for RFC 2553 resolver and socket functions AC_ARG_ENABLE(ipv6-support,