X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=configure.in;h=1ebaadbf6711495898f1a35e643da29bcf97e855;hb=94dd7fa7d6239dabaab243e334399e351c4fdc1f;hp=62617bdd2d2ba2cc39df7cce36b3749334dd7c82;hpb=a8221533093e480223b12e83ba4aefb8d1a38876;p=ngircd-alex.git diff --git a/configure.in b/configure.in index 62617bdd..1ebaadbf 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # -# $Id: configure.in,v 1.107 2005/03/20 17:23:36 alex Exp $ +# $Id: configure.in,v 1.110 2005/05/21 21:34:47 alex Exp $ # # -- Initialisation -- @@ -121,7 +121,7 @@ AC_CHECK_FUNCS([ \ memset realloc setsid setsockopt socket strcasecmp strchr strerror \ strstr waitpid],,AC_MSG_ERROR([required function missing!])) -AC_CHECK_FUNCS(inet_aton isdigit sigaction snprintf vsnprintf strlcpy strlcat) +AC_CHECK_FUNCS(inet_aton isdigit sigaction snprintf vsnprintf strdup strlcpy strlcat) AC_CHECK_FUNCS(select,[AC_CHECK_HEADERS(sys/select.h)], AC_MSG_ERROR([required function select() is missing!]) @@ -187,13 +187,14 @@ AC_ARG_WITH(tcp-wrappers, CPPFLAGS="-I$withval/include $CPPFLAGS" LDFLAGS="-L$withval/lib $LDFLAGS" fi - AC_CHECK_LIB(wrap, hosts_access) AC_MSG_CHECKING(for hosts_access) + LIBS="-lwrap $LIBS" AC_TRY_LINK([ - #include +#include +int allow_severity = 0; +int deny_severity = 0; ],[ - void *ptr; - ptr = hosts_access; + tcpd_warn("link test"); ],[ AC_MSG_RESULT(yes) AC_DEFINE(TCPWRAP, 1) @@ -347,7 +348,7 @@ fi # -- Result -- echo -echo "ngIRCd has been configured with the following options:" +echo "ngIRCd $PACKAGE_VERSION has been configured with the following options:" echo # Someone please show me a better way :) [borrowed by OpenSSH]