X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=secnet.git;a=blobdiff_plain;f=configure.in;h=0c0c545aded3b2d86cf46e047cfc5f0de95057b8;hp=a548dac4fe50d33095ac33dcf025b076a16c0a09;hb=f1393100aa5412f0df5ee363c6bdd42b2465fa59;hpb=4ff0a42ff7efe5cc1b36e9c5ff930609b3f56b86 diff --git a/configure.in b/configure.in index a548dac..0c0c545 100644 --- a/configure.in +++ b/configure.in @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. sinclude(ac_prog_cc_no_writeable_strings.m4) -AC_INIT(secnet,0.1.16+,secnet@chiark.greenend.org.uk) +AC_INIT(secnet,0.1.18+,secnet@chiark.greenend.org.uk) AC_CONFIG_SRCDIR(secnet.c) AC_CONFIG_HEADER(config.h) @@ -11,6 +11,14 @@ AC_REVISION($Id: configure.in,v 1.4 2002/09/09 22:05:02 steve Exp $) AC_LANG_C +# If fink is on the path then it is assumed we should use it. +AC_PATH_PROG([FINK],[fink]) +if test "x$FINK" != x; then + finkdir=`echo $FINK|sed 's,/[[^/]]*/[[^/]]*$,,'` + CPPFLAGS="-I$finkdir/include ${CPPFLAGS}" + LDFLAGS="-L$finkdir/lib ${LDFLAGS}" +fi + AC_PROG_MAKE_SET AC_PROG_CC AC_PROG_INSTALL @@ -62,8 +70,18 @@ AC_CHECK_LIB(resolv,inet_aton) AC_CHECK_LIB(adns,adns_init) REQUIRE_HEADER([adns.h]) -dnl check for getopt in standard library -AC_REPLACE_FUNCS([snprintf]) +AC_MSG_NOTICE([Checking requirements for IPv6 support...]) +enable_ipv6=true +m4_define(NO_IPV6,[enable_ipv6=false]) +AC_CHECK_DECL(AF_INET6, [],[NO_IPV6],[#include ]) +AC_CHECK_FUNC(adns_addr2text, [],[NO_IPV6]) +if $enable_ipv6; then + AC_MSG_NOTICE([Enabling IPv6 support]) + AC_DEFINE(CONFIG_IPV6, 1, + [Define to 1 to use IPv6 support in system and adns]) +else + AC_MSG_WARN([Disabling IPv6 support]) +fi AC_OUTPUT(Makefile,echo timestamp >stamp-h) @@ -124,12 +142,6 @@ typedef unsigned char uint8_t; #endif #endif -#ifndef HAVE_SNPRINTF -#include -#include -#include "snprintf.h" -#endif - #ifdef __GNUC__ #define NORETURN(_x) void _x __attribute__ ((noreturn)) #define FORMAT(_a,_b,_c) __attribute__ ((format (_a,_b,_c)))