2013-07-30 14:55:09 -05:00
|
|
|
# -*- Autoconf -*-
|
|
|
|
# Process this file with autoconf to produce a configure script.
|
2013-08-08 20:14:43 -05:00
|
|
|
# known to work with autconf version: autoconf (GNU Autoconf) 2.69
|
|
|
|
#
|
2013-07-30 14:55:09 -05:00
|
|
|
# @configure_input@
|
|
|
|
#
|
2014-02-25 07:12:33 -06:00
|
|
|
# Copyright (c) 2013, Verisign, Inc., NLnet Labs
|
2014-02-20 08:12:19 -06:00
|
|
|
# All rights reserved.
|
2014-02-21 11:23:20 -06:00
|
|
|
#
|
2014-02-20 08:12:19 -06:00
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
2014-02-25 07:23:19 -06:00
|
|
|
# * Neither the names of the copyright holders nor the
|
2014-02-20 08:12:19 -06:00
|
|
|
# names of its contributors may be used to endorse or promote products
|
|
|
|
# derived from this software without specific prior written permission.
|
2014-02-21 11:23:20 -06:00
|
|
|
#
|
2014-02-20 08:12:19 -06:00
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
# DISCLAIMED. IN NO EVENT SHALL Verisign, Inc. BE LIABLE FOR ANY
|
|
|
|
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2013-07-30 14:55:09 -05:00
|
|
|
|
2013-11-29 08:41:06 -06:00
|
|
|
AC_PREREQ([2.56])
|
2014-06-25 08:41:07 -05:00
|
|
|
AC_INIT([getdns], [0.1.3], [stub-resolver@verisignlabs.com], [], [http://www.getdnsapi.net])
|
2014-02-20 07:07:04 -06:00
|
|
|
CURRENT_DATE=`LC_ALL=C date`
|
|
|
|
GETDNS_COMPILATION_COMMENT="AC_PACKAGE_STRING configured on $CURRENT_DATE for the February 2014 version of the API"
|
|
|
|
AC_SUBST(GETDNS_COMPILATION_COMMENT)
|
|
|
|
AC_CONFIG_SRCDIR([src/getdns/getdns.h.in])
|
2013-10-07 10:08:41 -05:00
|
|
|
# AM_INIT_AUTOMAKE
|
|
|
|
# LT_INIT
|
2013-08-08 20:14:43 -05:00
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
2013-07-30 14:55:09 -05:00
|
|
|
|
2013-11-29 10:10:09 -06:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_CPP
|
|
|
|
|
2013-07-30 14:55:09 -05:00
|
|
|
# Checks for programs.
|
2013-10-07 10:08:41 -05:00
|
|
|
AC_CANONICAL_HOST
|
|
|
|
case "$host_os" in
|
2014-06-02 10:40:58 -05:00
|
|
|
linux* ) CFLAGS="$CFLAGS -D_BSD_SOURCE"
|
2013-12-09 02:49:28 -06:00
|
|
|
;;
|
|
|
|
solaris* ) CFLAGS="$CFLAGS -D__EXTENSIONS__" # for strdup() from <string.h>
|
|
|
|
;;
|
2013-10-07 10:08:41 -05:00
|
|
|
esac
|
|
|
|
|
2013-11-29 08:41:06 -06:00
|
|
|
# always use ./libtool unless override from commandline (libtool=mylibtool)
|
|
|
|
if test -z "$libtool"; then
|
|
|
|
libtool="`pwd`/libtool"
|
|
|
|
fi
|
|
|
|
AC_SUBST(libtool)
|
|
|
|
AC_PROG_LIBTOOL
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
|
|
|
|
dnl Add option to disable the evil rpath. Check whether to use rpath or not.
|
|
|
|
dnl Adds the --disable-rpath option. Uses trick to edit the ./libtool.
|
|
|
|
AC_DEFUN([ACX_ARG_RPATH],
|
|
|
|
[
|
|
|
|
AC_ARG_ENABLE(rpath,
|
|
|
|
[ --disable-rpath disable hardcoded rpath (default=enabled)],
|
|
|
|
enable_rpath=$enableval, enable_rpath=yes)
|
|
|
|
if test "x$enable_rpath" = xno; then
|
|
|
|
dnl AC_MSG_RESULT([Fixing libtool for -rpath problems.])
|
|
|
|
AC_CONFIG_COMMANDS([disable-rpath], [
|
|
|
|
sed < libtool > libtool-2 \
|
|
|
|
's/^hardcode_libdir_flag_spec.*$'/'hardcode_libdir_flag_spec=" -D__LIBTOOL_RPATH_SED__ "/'
|
|
|
|
mv libtool-2 libtool
|
|
|
|
chmod 755 libtool
|
|
|
|
libtool="./libtool"
|
|
|
|
])
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
ACX_ARG_RPATH
|
|
|
|
|
2013-11-29 10:03:01 -06:00
|
|
|
# search to set include and library paths right
|
|
|
|
# find libidn
|
2014-03-06 10:43:18 -06:00
|
|
|
AC_ARG_WITH(libidn, AS_HELP_STRING([--with-libidn=pathname],
|
2013-11-29 10:03:01 -06:00
|
|
|
[path to libidn (default: search /usr/local ..)]),
|
|
|
|
[], [withval="yes"])
|
|
|
|
if test x_$withval = x_yes; then
|
|
|
|
for dir in /usr/local /opt/local /usr/pkg /usr/sfw; do
|
|
|
|
if test -f "$dir/include/idna.h"; then
|
2013-11-29 10:10:09 -06:00
|
|
|
CFLAGS="$CFLAGS -I$dir/include"
|
2013-11-29 10:03:01 -06:00
|
|
|
LDFLAGS="$LDFLAGS -L$dir/lib"
|
|
|
|
AC_MSG_NOTICE([Found libidn in $dir])
|
|
|
|
break
|
|
|
|
fi
|
2013-12-03 04:45:42 -06:00
|
|
|
if test -f "$dir/include/idn/idna.h"; then
|
|
|
|
CFLAGS="$CFLAGS -I$dir/include/idn"
|
|
|
|
LDFLAGS="$LDFLAGS -L$dir/lib"
|
|
|
|
AC_MSG_NOTICE([Found libidn in $dir])
|
|
|
|
break
|
|
|
|
fi
|
2013-11-29 10:03:01 -06:00
|
|
|
done
|
2013-12-03 04:45:42 -06:00
|
|
|
if test -f "/usr/include/idn/idna.h"; then
|
|
|
|
CFLAGS="$CFLAGS -I/usr/include/idn"
|
|
|
|
#LDFLAGS="$LDFLAGS -L/usr/lib"
|
|
|
|
AC_MSG_NOTICE([Found libidn in /usr])
|
|
|
|
fi
|
2013-11-29 10:10:09 -06:00
|
|
|
else
|
|
|
|
if test x_$withval != x_no; then
|
|
|
|
CFLAGS="$CFLAGS -I$withval/include"
|
|
|
|
LDFLAGS="$LDFLAGS -L$withval/lib"
|
|
|
|
fi
|
2013-11-29 10:03:01 -06:00
|
|
|
fi
|
|
|
|
|
|
|
|
# find libldns
|
2014-03-06 10:43:18 -06:00
|
|
|
AC_ARG_WITH(libldns, AS_HELP_STRING([--with-libldns=pathname],
|
2013-11-29 10:03:01 -06:00
|
|
|
[path to libldns (default: search /usr/local ..)]),
|
|
|
|
[], [withval="yes"])
|
|
|
|
if test x_$withval = x_yes; then
|
|
|
|
for dir in /usr/local /opt/local /usr/pkg /usr/sfw; do
|
|
|
|
if test -f "$dir/include/ldns/ldns.h"; then
|
2013-11-29 10:10:09 -06:00
|
|
|
CFLAGS="$CFLAGS -I$dir/include"
|
2013-11-29 10:03:01 -06:00
|
|
|
LDFLAGS="$LDFLAGS -L$dir/lib"
|
|
|
|
AC_MSG_NOTICE([Found libldns in $dir])
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
2013-11-29 10:10:09 -06:00
|
|
|
else
|
|
|
|
if test x_$withval != x_no; then
|
|
|
|
CFLAGS="$CFLAGS -I$withval/include"
|
|
|
|
LDFLAGS="$LDFLAGS -L$withval/lib"
|
|
|
|
fi
|
2013-11-29 10:03:01 -06:00
|
|
|
fi
|
|
|
|
|
|
|
|
# find libunbound
|
2014-03-06 10:43:18 -06:00
|
|
|
AC_ARG_WITH(libunbound, AS_HELP_STRING([--with-libunbound=pathname],
|
2013-11-29 10:03:01 -06:00
|
|
|
[path to libunbound (default: search /usr/local ..)]),
|
|
|
|
[], [withval="yes"])
|
|
|
|
if test x_$withval = x_yes; then
|
|
|
|
for dir in /usr/local /opt/local /usr/pkg /usr/sfw; do
|
|
|
|
if test -f "$dir/include/unbound.h"; then
|
2013-11-29 10:10:09 -06:00
|
|
|
CFLAGS="$CFLAGS -I$dir/include"
|
2013-11-29 10:03:01 -06:00
|
|
|
LDFLAGS="$LDFLAGS -L$dir/lib"
|
|
|
|
AC_MSG_NOTICE([Found libunbound in $dir])
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
2013-11-29 10:10:09 -06:00
|
|
|
else
|
|
|
|
if test x_$withval != x_no; then
|
|
|
|
CFLAGS="$CFLAGS -I$withval/include"
|
|
|
|
LDFLAGS="$LDFLAGS -L$withval/lib"
|
|
|
|
fi
|
2013-11-29 10:03:01 -06:00
|
|
|
fi
|
|
|
|
|
2013-07-30 14:55:09 -05:00
|
|
|
# Checks for libraries.
|
2013-08-09 16:04:25 -05:00
|
|
|
found_all_libs=1
|
2014-02-11 08:14:02 -06:00
|
|
|
AC_MSG_NOTICE([Checking for dependency ldns])
|
2013-08-09 16:04:25 -05:00
|
|
|
AC_CHECK_LIB([ldns], [ldns_dname_new_frm_str], [], [found_all_libs=0])
|
2014-02-11 08:14:02 -06:00
|
|
|
AC_MSG_NOTICE([Checking for dependency libidn])
|
2013-11-25 19:40:38 -06:00
|
|
|
AC_CHECK_LIB([idn], [idna_to_ascii_8z], [], [found_all_libs=0])
|
|
|
|
|
2013-08-09 16:04:25 -05:00
|
|
|
if test $found_all_libs == 0
|
|
|
|
then
|
|
|
|
AC_MSG_ERROR([One more dependencies is missing])
|
|
|
|
fi
|
2013-07-30 14:55:09 -05:00
|
|
|
|
2014-01-21 14:31:22 -06:00
|
|
|
# break out libunbound from other libraries since we are currently using a
|
2013-11-03 15:40:24 -06:00
|
|
|
# patch to the sources
|
|
|
|
found_libunbound=1
|
|
|
|
AC_MSG_NOTICE([Checking for dependency libunbound])
|
2014-01-21 14:31:22 -06:00
|
|
|
AC_CHECK_LIB([unbound], [ub_fd], [], [found_libunbound=0])
|
2013-11-03 15:40:24 -06:00
|
|
|
if test $found_libunbound == 0
|
|
|
|
then
|
2014-01-21 14:31:22 -06:00
|
|
|
AC_MSG_ERROR([libunbound is missing.])
|
2013-11-03 15:40:24 -06:00
|
|
|
fi
|
|
|
|
|
2014-05-07 08:35:29 -05:00
|
|
|
AC_PATH_PROG([DOXYGEN], [doxygen])
|
2013-10-10 18:15:17 -05:00
|
|
|
if test -z "$DOXYGEN";
|
2014-03-06 10:43:18 -06:00
|
|
|
then AC_MSG_WARN([doxygen not found, continuing without])
|
2013-10-10 18:15:17 -05:00
|
|
|
fi
|
2013-10-07 10:08:41 -05:00
|
|
|
|
2013-07-30 14:55:09 -05:00
|
|
|
# Checks for header files.
|
2014-02-21 11:47:33 -06:00
|
|
|
AC_CHECK_HEADERS([inttypes.h netinet/in.h stdint.h stdlib.h string.h],,, [AC_INCLUDES_DEFAULT])
|
2013-07-30 14:55:09 -05:00
|
|
|
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
AC_TYPE_SIZE_T
|
|
|
|
AC_TYPE_UINT16_T
|
|
|
|
AC_TYPE_UINT32_T
|
|
|
|
AC_TYPE_UINT64_T
|
|
|
|
AC_TYPE_UINT8_T
|
2014-06-02 09:50:52 -05:00
|
|
|
AC_CHECK_TYPE([u_char])
|
2013-07-30 14:55:09 -05:00
|
|
|
|
2014-02-21 11:23:20 -06:00
|
|
|
getdns_LIBS=$LIBS
|
|
|
|
getdns_LDFLAGS=$LDFLAGS
|
|
|
|
|
2014-03-06 10:43:18 -06:00
|
|
|
#-------------------- libevent extension
|
|
|
|
AC_ARG_WITH([libevent],
|
|
|
|
[AS_HELP_STRING([--with-libevent], [path to libevent (default: search /usr/local ..)])],
|
|
|
|
[with_libevent=search],
|
|
|
|
[withval=no])
|
2014-02-21 11:23:20 -06:00
|
|
|
|
2014-06-02 07:34:34 -05:00
|
|
|
# libevent 1.x requires a u_char typedef which is not always available
|
|
|
|
# on some systems so our check is a little complicated
|
|
|
|
# we further need to ensure that this is included in the getdns headers
|
|
|
|
# that get installed later so some users may not be building in an
|
|
|
|
# environment that has the generated config.h SO we need to generate
|
|
|
|
# this one extra header in that case
|
|
|
|
|
2014-02-24 19:48:20 -06:00
|
|
|
have_libevent=0
|
2014-02-21 11:23:20 -06:00
|
|
|
EXTENSION_LIBEVENT_EXT_LIBS=""
|
2014-03-06 10:43:18 -06:00
|
|
|
EXTENSION_LIBEVENT_LIB=""
|
|
|
|
EXTENSION_LIBEVENT_LDFLAGS=""
|
2014-02-21 14:42:06 -06:00
|
|
|
CHECK_EVENT_PROG=""
|
2014-03-06 10:43:18 -06:00
|
|
|
AS_IF([test x_$withval = x_no],
|
|
|
|
[],
|
|
|
|
[AS_IF([test x_$withval = x_yes],
|
|
|
|
[AC_SEARCH_LIBS([event_loop],
|
|
|
|
[event_core event],
|
|
|
|
[AC_CHECK_FUNCS([event_base_new event_base_free])]
|
|
|
|
[AC_CHECK_HEADERS([event2/event.h],
|
|
|
|
[have_libevent=1]
|
2014-06-03 04:05:17 -05:00
|
|
|
[AS_IF([test "x_$ac_cv_search_event_loop" = "x_none required"],[],[EXTENSION_LIBEVENT_EXT_LIBS="$ac_cv_search_event_loop"])],
|
2014-03-07 01:50:00 -06:00
|
|
|
[AC_CHECK_HEADERS([event.h],
|
|
|
|
[have_libevent=1]
|
2014-06-03 04:05:17 -05:00
|
|
|
[AS_IF([test "x_$ac_cv_search_event_loop" = "x_none required"],[],[EXTENSION_LIBEVENT_EXT_LIBS="$ac_cv_search_event_loop"])],
|
2014-03-07 01:50:00 -06:00
|
|
|
[AC_MSG_ERROR([event2/event.h and event.h missing, try without libevent])]
|
|
|
|
[have_libevent=0],
|
2014-06-02 07:34:34 -05:00
|
|
|
[AC_INCLUDES_DEFAULT]
|
2014-06-02 09:50:52 -05:00
|
|
|
[#if HAVE_U_CHAR == 0
|
2014-06-02 07:34:34 -05:00
|
|
|
typedef unsigned char u_char;
|
|
|
|
#endif])],
|
2014-03-06 10:43:18 -06:00
|
|
|
[AC_INCLUDES_DEFAULT])],
|
2014-06-02 07:34:34 -05:00
|
|
|
[AC_MSG_ERROR([libevent missing, try without libevent])]
|
2014-03-06 10:43:18 -06:00
|
|
|
)],
|
|
|
|
[have_libevent=1]
|
|
|
|
[AC_MSG_NOTICE([assuming libevent in $withval])]
|
|
|
|
[CFLAGS="$CFLAGS -I$withval/include"]
|
|
|
|
[EXTENSION_LIBEVENT_LDFLAGS="-L$withval/lib"]
|
|
|
|
[EXTENSION_LIBEVENT_EXT_LIBS="-levent"])]
|
|
|
|
)
|
|
|
|
|
|
|
|
AS_IF([test x_$have_libevent = x_1],
|
|
|
|
[EXTENSION_LIBEVENT_LIB="libgetdns_ext_event.la"]
|
|
|
|
[CHECK_EVENT_PROG=check_getdns_event])
|
2014-01-22 18:55:04 -06:00
|
|
|
|
|
|
|
AC_SUBST(have_libevent)
|
2014-02-21 11:23:20 -06:00
|
|
|
AC_SUBST(EXTENSION_LIBEVENT_LIB)
|
|
|
|
AC_SUBST(EXTENSION_LIBEVENT_EXT_LIBS)
|
2014-03-06 10:43:18 -06:00
|
|
|
AC_SUBST(EXTENSION_LIBEVENT_LDFLAGS)
|
2014-02-21 14:42:06 -06:00
|
|
|
AC_SUBST(CHECK_EVENT_PROG)
|
2014-02-04 23:01:55 -06:00
|
|
|
|
2014-03-06 10:43:18 -06:00
|
|
|
# end libevent extension
|
|
|
|
|
|
|
|
#-------------------- libuv extension
|
|
|
|
# if user says nothing about libuv, or specifies --with-libuv=no or --without-libuv
|
|
|
|
# then we do not want libuv extensions built
|
|
|
|
# if user specifies --with-libuv then search for it
|
|
|
|
# if user specifies --with-libuv=/path then check the lib at that path
|
|
|
|
AC_ARG_WITH([libuv],
|
|
|
|
[AS_HELP_STRING([--with-libuv], [path to libuv (default: search /usr/local ..)])],
|
|
|
|
[with_libuv=search],
|
|
|
|
[withval=no])
|
|
|
|
|
|
|
|
have_libuv=0
|
2014-02-21 11:23:20 -06:00
|
|
|
EXTENSION_LIBUV_EXT_LIBS=""
|
2014-03-06 10:43:18 -06:00
|
|
|
EXTENSION_LIBUV_LIB=""
|
|
|
|
EXTENSION_LIBUV_LDFLAGS=""
|
2014-02-21 14:42:06 -06:00
|
|
|
CHECK_UV_PROG=""
|
2014-03-06 10:43:18 -06:00
|
|
|
AS_IF([test x_$withval = x_no],
|
|
|
|
[],
|
|
|
|
[AS_IF([test x_$withval = x_yes],
|
|
|
|
[AC_SEARCH_LIBS([uv_run],
|
|
|
|
[uv],
|
|
|
|
[AC_CHECK_HEADERS([uv.h],
|
|
|
|
[have_libuv=1]
|
|
|
|
[EXTENSION_LIBUV_EXT_LIBS="$ac_cv_search_uv_run"],
|
|
|
|
[AC_MSG_ERROR([uv.h missing, try without libuv])]
|
|
|
|
[have_libuv=0],
|
|
|
|
[AC_INCLUDES_DEFAULT])],
|
|
|
|
[AC_MSG_ERROR([libuv missing, try without libuv])]
|
|
|
|
)],
|
|
|
|
[have_libuv=1]
|
|
|
|
[AC_MSG_NOTICE([assuming libuv in $withval])]
|
|
|
|
[CFLAGS="$CFLAGS -I$withval/include"]
|
|
|
|
[EXTENSION_LIBUV_LDFLAGS="-L$withval/lib"]
|
|
|
|
[EXTENSION_LIBUV_EXT_LIBS="-luv"])]
|
|
|
|
)
|
|
|
|
|
|
|
|
AS_IF([test x_$have_libuv = x_1],
|
|
|
|
[EXTENSION_LIBUV_LIB="libgetdns_ext_uv.la"]
|
|
|
|
[CHECK_UV_PROG=check_getdns_uv])
|
2014-02-04 23:01:55 -06:00
|
|
|
|
|
|
|
AC_SUBST(have_libuv)
|
2014-02-21 11:23:20 -06:00
|
|
|
AC_SUBST(EXTENSION_LIBUV_LIB)
|
|
|
|
AC_SUBST(EXTENSION_LIBUV_EXT_LIBS)
|
2014-03-06 10:43:18 -06:00
|
|
|
AC_SUBST(EXTENSION_LIBUV_LDFLAGS)
|
2014-02-21 14:42:06 -06:00
|
|
|
AC_SUBST(CHECK_UV_PROG)
|
2014-02-04 23:01:55 -06:00
|
|
|
|
2014-03-06 10:43:18 -06:00
|
|
|
# end libuv extension
|
|
|
|
|
|
|
|
#-------------------- libev extension
|
|
|
|
AC_ARG_WITH([libev],
|
|
|
|
[AS_HELP_STRING([--with-libev], [path to libev (default: search /usr/local ..)])],
|
|
|
|
[with_libev=search],
|
|
|
|
[withval=no])
|
|
|
|
|
|
|
|
have_libev=0
|
2014-02-21 11:23:20 -06:00
|
|
|
EXTENSION_LIBEV_EXT_LIBS=""
|
2014-03-06 10:43:18 -06:00
|
|
|
EXTENSION_LIBEV_LIB=""
|
|
|
|
EXTENSION_LIBEV_LDFLAGS=""
|
|
|
|
CHECK_EV_PROG=""
|
|
|
|
AS_IF([test x_$withval = x_no],
|
|
|
|
[],
|
|
|
|
[AS_IF([test x_$withval = x_yes],
|
|
|
|
[AC_SEARCH_LIBS([ev_run],
|
|
|
|
[ev],
|
|
|
|
[AC_CHECK_HEADERS([ev.h],
|
2014-05-26 08:56:30 -05:00
|
|
|
[have_libev=1]
|
|
|
|
[EXTENSION_LIBEV_EXT_LIBS="$ac_cv_search_ev_run"],
|
|
|
|
[AC_CHECK_HEADERS([libev/ev.h],
|
|
|
|
[have_libev=1]
|
|
|
|
[EXTENSION_LIBEV_EXT_LIBS="$ac_cv_search_ev_run"],
|
|
|
|
[AC_MSG_ERROR([ev.h missing, try without libev])]
|
|
|
|
[have_libev=0],
|
|
|
|
[AC_INCLUDES_DEFAULT])
|
|
|
|
],
|
|
|
|
[AC_INCLUDES_DEFAULT])
|
|
|
|
],
|
2014-03-06 10:43:18 -06:00
|
|
|
[AC_MSG_ERROR([libev missing, try without libev])]
|
|
|
|
)],
|
|
|
|
[have_libev=1]
|
|
|
|
[AC_MSG_NOTICE([assuming libev in $withval])]
|
|
|
|
[CFLAGS="$CFLAGS -I$withval/include"]
|
|
|
|
[EXTENSION_LIBEV_LDFLAGS="-L$withval/lib"]
|
|
|
|
[EXTENSION_LIBEV_EXT_LIBS="-lev"])]
|
|
|
|
)
|
2014-02-21 14:42:06 -06:00
|
|
|
|
2014-03-06 10:43:18 -06:00
|
|
|
AS_IF([test x_$have_libev = x_1],
|
|
|
|
[EXTENSION_LIBEV_LIB="libgetdns_ext_ev.la"]
|
|
|
|
[CHECK_EV_PROG=check_getdns_ev])
|
2014-02-05 23:24:26 -06:00
|
|
|
|
|
|
|
AC_SUBST(have_libev)
|
2014-02-21 11:23:20 -06:00
|
|
|
AC_SUBST(EXTENSION_LIBEV_LIB)
|
|
|
|
AC_SUBST(EXTENSION_LIBEV_EXT_LIBS)
|
2014-03-06 10:43:18 -06:00
|
|
|
AC_SUBST(EXTENSION_LIBEV_LDFLAGS)
|
2014-02-21 14:42:06 -06:00
|
|
|
AC_SUBST(CHECK_EV_PROG)
|
2014-02-21 11:23:20 -06:00
|
|
|
|
2014-03-06 10:43:18 -06:00
|
|
|
# end libev extension
|
2014-02-21 11:23:20 -06:00
|
|
|
|
|
|
|
LIBS=$getdns_LIBS
|
|
|
|
LDFLAGS=$getdns_LDFLAGS
|
2014-02-05 23:24:26 -06:00
|
|
|
|
2014-02-11 15:42:21 -06:00
|
|
|
# --with-trust-anchor=
|
|
|
|
AC_DEFINE([SYSCONFDIR], [sysconfdir], [System configuration dir])
|
2014-03-06 10:43:18 -06:00
|
|
|
AC_ARG_WITH(trust-anchor, AS_HELP_STRING([--with-trust-anchor=KEYFILE], [Default location of the trust anchor file. [default=SYSCONFDIR/unbound/getdns-root.key]]), [
|
2014-02-11 15:42:21 -06:00
|
|
|
TRUST_ANCHOR_FILE="$withval"
|
|
|
|
],[
|
|
|
|
if test "x$TRUST_ANCHOR_FILE" = "x"; then
|
|
|
|
if test "x$sysconfdir" = 'x${prefix}/etc' ; then
|
|
|
|
if test "x$prefix" = 'xNONE' ; then
|
2014-02-20 04:52:57 -06:00
|
|
|
TRUST_ANCHOR_FILE="/etc/unbound/getdns-root.key"
|
2014-02-11 15:42:21 -06:00
|
|
|
else
|
2014-02-20 04:52:57 -06:00
|
|
|
TRUST_ANCHOR_FILE="${prefix}/etc/unbound/getdns-root.key"
|
2014-02-11 15:42:21 -06:00
|
|
|
fi
|
|
|
|
else
|
2014-02-20 04:52:57 -06:00
|
|
|
TRUST_ANCHOR_FILE="${sysconfdir}/unbound/getdns-root.key"
|
2014-02-11 15:42:21 -06:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
AC_DEFINE_UNQUOTED([TRUST_ANCHOR_FILE], ["$TRUST_ANCHOR_FILE"], [Default trust anchor file])
|
|
|
|
AC_SUBST(TRUST_ANCHOR_FILE)
|
|
|
|
AC_MSG_NOTICE([Default trust anchor: $TRUST_ANCHOR_FILE])
|
|
|
|
|
2014-02-20 07:07:04 -06:00
|
|
|
AC_CONFIG_FILES([Makefile src/Makefile src/getdns/Makefile src/getdns/getdns.h src/example/Makefile src/test/Makefile doc/Makefile])
|
2013-10-10 18:15:17 -05:00
|
|
|
if [ test -n "$DOXYGEN" ]
|
|
|
|
then AC_CONFIG_FILES([src/Doxyfile])
|
|
|
|
fi
|
2013-11-30 06:53:57 -06:00
|
|
|
AC_CONFIG_HEADER([src/config.h])
|
2013-07-30 14:55:09 -05:00
|
|
|
AC_OUTPUT
|