From cdc355e7788c67d364d91ac700745f3af0cc94bd Mon Sep 17 00:00:00 2001 From: W-Mark Kubacki Date: Mon, 22 Mar 2010 14:27:24 +0100 Subject: oldest possible autoconf is 2.61, with separation of troublesome functions --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 07af4f0..e019983 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_PREREQ(2.63) +AC_PREREQ(2.61) AC_INIT(fcgiwrap, 1.0, root@localdomain.pl) AM_CFLAGS="-std=gnu99 -Wall -Wextra -Werror -pedantic" if test x"$CFLAGS" = x""; then @@ -32,7 +32,8 @@ AC_TYPE_SSIZE_T AC_FUNC_FORK AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK AC_FUNC_MALLOC -AC_CHECK_FUNCS([dup2 putenv select setenv strchr strdup strerror strrchr],, [AC_MSG_ERROR([seems as if your libraries doesn't provide an expected function])]) +AC_CHECK_FUNCS([strchr strdup strrchr]) +AC_CHECK_FUNCS([dup2 putenv select setenv strerror],, [AC_MSG_ERROR([seems as if your libraries doesn't provide an expected function])]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT -- cgit v1.2.3