Make srvx compile on cygwin again.
[srvx.git] / configure.in
index 0769fb9da56ff0d6f2c5f2a4e2fdaf2a912a45d8..38bd08c76ab66333352898edafb1c302b7e26d6b 100644 (file)
@@ -1,9 +1,8 @@
 dnl Process this file with autoconf to create a configure script.
 
 dnl General initialization.
-AC_REVISION([$Id: configure.in,v 1.77 2004/01/02 01:49:15 entrope Exp $])
 AC_PREREQ(2.59)
-AC_INIT([srvx],[1.3],[srvx-bugs@lists.sourceforge.net])
+AC_INIT([srvx],[1.3.1],[srvx-bugs@lists.sourceforge.net])
 CODENAME=surge
 AC_CONFIG_HEADERS(src/config.h)
 AC_CONFIG_SRCDIR(src/opserv.c)
@@ -20,12 +19,16 @@ AC_C_INLINE
 dnl Checks for programs.
 AC_PROG_AWK
 AC_PROG_CC
-AC_PROG_RANLIB
 AC_PROG_INSTALL
+AC_PROG_LIBTOOL
 AC_PROG_LN_S
 AC_PROG_MAKE_SET
 AC_PROG_GCC_TRADITIONAL
 
+dnl Look for a GNU Arch program
+AC_CHECK_PROGS(GNU_ARCH, [baz tla])
+AM_CONDITIONAL(HAS_GNU_ARCH, test z$GNU_ARCH != z)
+
 dnl nice that unixes can all follow a standard.
 case $target in
   *-freebsd2* | *-freebsdelf2* | *-freebsd*out3*)
@@ -66,11 +69,7 @@ AC_HEADER_TIME
 AC_STRUCT_TM
 
 dnl Would rather not bail on headers, BSD has alot of the functions elsewhere. -Jedi
-AC_CHECK_HEADERS(fcntl.h malloc.h netdb.h netinet/in.h sys/resource.h sys/timeb.h sys/times.h sys/param.h sys/socket.h sys/time.h sys/types.h sys/wait.h unistd.h getopt.h memory.h regex.h arpa/inet.h sys/mman.h sys/stat.h dirent.h,,)
-
-dnl Cygwin does not have d_type in struct dirent.  We use stat() as a fallback.
-AC_CHECK_MEMBER([struct dirent.d_type],
-        [AC_DEFINE(HAVE_DIRENT_D_TYPE, 1, [Define if struct dirent exists and includes the d_type element.])],,[#include <dirent.h>])
+AC_CHECK_HEADERS(fcntl.h malloc.h netdb.h arpa/inet.h netinet/in.h sys/resource.h sys/timeb.h sys/times.h sys/param.h sys/socket.h sys/time.h sys/types.h sys/wait.h unistd.h getopt.h memory.h regex.h arpa/inet.h sys/mman.h sys/stat.h dirent.h,,)
 
 dnl portability stuff, hurray! -Jedi
 AC_CHECK_MEMBER([struct sockaddr.sa_len],
@@ -88,7 +87,7 @@ if test $ac_cv_func_gettimeofday = no; then
 fi
 
 dnl We have fallbacks in case these are missing, so just check for them.
-AC_CHECK_FUNCS(freeaddrinfo getaddrinfo getnameinfo getpagesize memcpy memset strdup strerror strsignal localtime_r setrlimit getopt getopt_long regcomp regexec regfree sysconf,,)
+AC_CHECK_FUNCS(freeaddrinfo getaddrinfo getnameinfo getpagesize memcpy memset strdup strerror strsignal localtime_r setrlimit getopt getopt_long regcomp regexec regfree sysconf inet_aton,,)
 
 dnl Check for absolutely required library functions.
 AC_CHECK_FUNCS(select socket strcspn strspn strtod strtoul,,AC_MSG_ERROR([a required function was not found.  srvx build will fail.]))