dnl Eggdrop compile-time configuration file for src/mod/dns.mod dnl dnl $Id: configure.in,v 1.8 2003/04/01 05:33:41 wcc Exp $ dnl This file is based on the autoconf m4 macros. Special eggdrop dnl macros are used to optimise the size of the resulting configure dnl script `./configure'. Run `../eggautoconf' to update that dnl script. You need to have the GNU autoconf package installed dnl though. dnl Instead of AC_INIT, we call EGG_INIT(). sinclude(../eggmod.m4) EGG_INIT(coredns.c) AC_PROG_CC AC_CYGWIN AC_MSG_CHECKING(whether or not you enabled IPv6 support) AC_ARG_ENABLE(ipv6, [ --enable-ipv6 enable IPV6 support], [ ac_cv_m_ipv6="yes" AC_MSG_RESULT($ac_cv_m_ipv6) ], [ ac_cv_m_ipv6="no" AC_MSG_RESULT($ac_cv_m_ipv6) ]) dns_reslib_avail="true" AC_CHECK_FUNC(res_init, , AC_CHECK_LIB(resolv, res_init, RESLIB="-lresolv", AC_CHECK_LIB(bind, res_init, RESLIB="-lbind", [dnl dns_reslib_avail="false"; ])dnl )dnl )dnl if test "${dns_reslib_avail}" = false; then dns_reslib_avail="true" AC_CHECK_FUNC(__res_init, , AC_CHECK_LIB(resolv, __res_init, RESLIB="-lresolv", AC_CHECK_LIB(bind, __res_init, RESLIB="-lbind", [dnl dns_reslib_avail="false"; ])dnl )dnl )dnl fi AC_CHECK_FUNC(res_mkquery, , AC_CHECK_LIB(resolv, res_mkquery, [dnl if test "x${RESLIB}" != "x-lresolv"; then RESLIB="${RESLIB} -lresolv" fi ], AC_CHECK_LIB(bind, res_mkquery, [dnl if test "x${RESLIB}" != "x-lbind"; then RESLIB="${RESLIB} -lbind" fi ], [dnl dns_reslib_avail="false"; ]) ) ) if test "${dns_reslib_avail}" = false; then dns_reslib_avail="true" AC_CHECK_FUNC(__res_mkquery, , AC_CHECK_LIB(resolv, __res_mkquery, [dnl if test "x${RESLIB}" != "x-lresolv"; then RESLIB="${RESLIB} -lresolv" fi ], AC_CHECK_LIB(bind, __res_mkquery, [dnl if test "x${RESLIB}" != "x-lbind"; then RESLIB="${RESLIB} -lbind" fi ], [dnl dns_reslib_avail="false"; ]) ) ) fi if test "$ac_cv_cygwin" = "yes" then AC_MSG_CHECKING(for /usr/local/bind/lib/libbind.a) if test -r /usr/local/bind/lib/libbind.a then AC_MSG_RESULT(yes) RESLIB="${RESLIB} /usr/local/bind/lib/libbind.a" RESINCLUDE="-I/usr/local/bind/include" dns_reslib_avail="true" else AC_MSG_RESULT(no) fi fi if test "${dns_reslib_avail}" = false; then cat >&2 <&2 <