mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
Nicer configure.
git-svn-id: file:///svn/unbound/trunk@1543 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
912db8d277
commit
00170dfa41
6 changed files with 1536 additions and 1089 deletions
10
Makefile.in
10
Makefile.in
|
|
@ -43,7 +43,11 @@ UB_ON_WINDOWS=@UB_ON_WINDOWS@
|
||||||
YACC=@YACC@
|
YACC=@YACC@
|
||||||
LEX=@LEX@
|
LEX=@LEX@
|
||||||
CC=@CC@
|
CC=@CC@
|
||||||
CPPFLAGS=-I$(srcdir) -I. @CPPFLAGS@ @DEFS@
|
ifeq "$(srcdir)" "."
|
||||||
|
CPPFLAGS=-I. @CPPFLAGS@
|
||||||
|
else
|
||||||
|
CPPFLAGS=-I$(srcdir) -I. @CPPFLAGS@
|
||||||
|
endif
|
||||||
CFLAGS=@CFLAGS@
|
CFLAGS=@CFLAGS@
|
||||||
LDFLAGS=@LDFLAGS@
|
LDFLAGS=@LDFLAGS@
|
||||||
LIBS=@LIBS@
|
LIBS=@LIBS@
|
||||||
|
|
@ -370,9 +374,7 @@ $(BUILD)%.d: $(srcdir)/%.c
|
||||||
@if test ! -z "$(ldnsdir)" -a ! -e $(ldnsdir)/include/ldns/ldns.h; \
|
@if test ! -z "$(ldnsdir)" -a ! -e $(ldnsdir)/include/ldns/ldns.h; \
|
||||||
then (cd $(ldnsdir); $(MAKE) copy-headers); fi
|
then (cd $(ldnsdir); $(MAKE) copy-headers); fi
|
||||||
@-if test ! -d $(dir $@); then $(INSTALL) -d $(patsubst %/,%,$(dir $@)); fi
|
@-if test ! -d $(dir $@); then $(INSTALL) -d $(patsubst %/,%,$(dir $@)); fi
|
||||||
$Q$(SHELL) -ec '$(CC) $(DEPFLAG) $(CPPFLAGS) $(CFLAGS) $< \
|
$Q$(SHELL) -ec '$(CC) $(DEPFLAG) $(CPPFLAGS) $(CFLAGS) $< | sed '\''s!\(.*\)\.o[ :]*!$(dir $@)\1.lo $@ : !g'\'' > $@; [ -s $@ ] || rm -f $@'
|
||||||
| sed '\''s!\(.*\)\.o[ :]*!$(dir $@)\1.lo $@ : !g'\'' > $@; \
|
|
||||||
[ -s $@ ] || rm -f $@'
|
|
||||||
|
|
||||||
ifneq ($(MAKECMDGOALS),clean)
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
ifneq ($(MAKECMDGOALS),realclean)
|
ifneq ($(MAKECMDGOALS),realclean)
|
||||||
|
|
|
||||||
387
acx_nlnetlabs.m4
Normal file
387
acx_nlnetlabs.m4
Normal file
|
|
@ -0,0 +1,387 @@
|
||||||
|
# acx_nlnetlabs.m4 - common macros for configure checks
|
||||||
|
# Copyright 2009, Wouter Wijngaards, NLnet Labs.
|
||||||
|
# BSD licensed.
|
||||||
|
#
|
||||||
|
# Automates some of the checking constructs. Aims at portability for POSIX.
|
||||||
|
# Documentation for functions is below.
|
||||||
|
#
|
||||||
|
|
||||||
|
dnl Escape backslashes as \\, for C:\ paths, for the C preprocessor defines.
|
||||||
|
dnl for example, NLX_ESCAPE_BACKSLASH($from_var, to_var)
|
||||||
|
dnl $1: the text to change.
|
||||||
|
dnl $2: the result.
|
||||||
|
AC_DEFUN(ACX_ESCAPE_BACKSLASH, $2="`echo $1 | sed -e 's/\\\\/\\\\\\\\/g'`" )
|
||||||
|
|
||||||
|
dnl Calculate comma separated windows-resource numbers from package version.
|
||||||
|
dnl Picks the first three(,0) or four numbers out of the name.
|
||||||
|
dnl $1: variable for the result
|
||||||
|
AC_DEFUN(ACX_RSRC_VERSION,
|
||||||
|
$1=[[`echo $PACKAGE_VERSION | sed -e 's/^[^0-9]*\([0-9]\)[^0-9]*\([0-9]\)[^0-9]*\([0-9]\)[^0-9]*\([0-9]\).*$/\1,\2,\3,\4/' -e 's/^[^0-9]*\([0-9]\)[^0-9]*\([0-9]\)[^0-9]*\([0-9]\)[^0-9]*$/\1,\2,\3,0/' `]]
|
||||||
|
)
|
||||||
|
|
||||||
|
dnl Routine to help check for compiler flags.
|
||||||
|
dnl Checks if the compiler will accept the flag.
|
||||||
|
dnl $1: the flag without a - in front, so g to check -g.
|
||||||
|
dnl $2: executed if yes
|
||||||
|
dnl $3: executed if no
|
||||||
|
AC_DEFUN(ACX_CHECK_COMPILER_FLAG,
|
||||||
|
[
|
||||||
|
AC_REQUIRE([AC_PROG_CC])
|
||||||
|
AC_MSG_CHECKING(whether $CC supports -$1)
|
||||||
|
cache=`echo $1 | sed 'y%.=/+-%___p_%'`
|
||||||
|
AC_CACHE_VAL(cv_prog_cc_flag_$cache,
|
||||||
|
[
|
||||||
|
echo 'void f(){}' >conftest.c
|
||||||
|
if test -z "`$CC -$1 -c conftest.c 2>&1`"; then
|
||||||
|
eval "cv_prog_cc_flag_$cache=yes"
|
||||||
|
else
|
||||||
|
eval "cv_prog_cc_flag_$cache=no"
|
||||||
|
fi
|
||||||
|
rm -f conftest conftest.o conftest.c
|
||||||
|
])
|
||||||
|
if eval "test \"`echo '$cv_prog_cc_flag_'$cache`\" = yes"; then
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
:
|
||||||
|
$2
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
:
|
||||||
|
$3
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl setup flags for ACX_CHECK_COMPILER_FLAG_NEEDED
|
||||||
|
dnl ERRFLAG: result, compiler flag to turn warnings into errors
|
||||||
|
AC_DEFUN([ACX_CHECK_ERROR_FLAGS],
|
||||||
|
[
|
||||||
|
ACX_CHECK_COMPILER_FLAG(Werror, [ERRFLAG="-Werror"], [ERRFLAG="-errwarn"])
|
||||||
|
ACX_CHECK_COMPILER_FLAG(Wall, [ERRFLAG="$ERRFLAG -Wall"],
|
||||||
|
[ERRFLAG="$ERRFLAG -errfmt"])
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl Routine to help check for needed compiler flags.
|
||||||
|
dnl $1: flags for CC
|
||||||
|
dnl $2: the includes and code
|
||||||
|
dnl $3: if the given code only compiles with the flag, execute argument 3
|
||||||
|
dnl $4: if the given code compiles without the flag, execute argument 4
|
||||||
|
dnl $5: with and without flag the compile fails, execute argument 5.
|
||||||
|
AC_DEFUN([ACX_CHECK_COMPILER_FLAG_NEEDED],
|
||||||
|
[
|
||||||
|
AC_REQUIRE([AC_PROG_CC])
|
||||||
|
AC_REQUIRE([ACX_CHECK_ERROR_FLAGS])
|
||||||
|
AC_MSG_CHECKING(whether we need $1 as a flag for $CC)
|
||||||
|
cache=AS_TR_SH($1)
|
||||||
|
dnl cache=`echo $1 | sed 'y%.=/+- %___p__%'`
|
||||||
|
AC_CACHE_VAL(cv_prog_cc_flag_needed_$cache,
|
||||||
|
[
|
||||||
|
echo '$2' > conftest.c
|
||||||
|
echo 'void f(){}' >>conftest.c
|
||||||
|
if test -z "`$CC $CFLAGS $ERRFLAG -c conftest.c 2>&1`"; then
|
||||||
|
eval "cv_prog_cc_flag_needed_$cache=no"
|
||||||
|
else
|
||||||
|
[
|
||||||
|
if test -z "`$CC $CFLAGS $1 $ERRFLAG -c conftest.c 2>&1`"; then
|
||||||
|
eval "cv_prog_cc_flag_needed_$cache=yes"
|
||||||
|
else
|
||||||
|
eval "cv_prog_cc_flag_needed_$cache=fail"
|
||||||
|
#echo 'Test with flag fails too!'
|
||||||
|
#cat conftest.c
|
||||||
|
#echo "$CC $CFLAGS $1 $ERRFLAG -c conftest.c 2>&1"
|
||||||
|
#echo `$CC $CFLAGS $1 $ERRFLAG -c conftest.c 2>&1`
|
||||||
|
#exit 1
|
||||||
|
fi
|
||||||
|
]
|
||||||
|
fi
|
||||||
|
rm -f conftest conftest.c conftest.o
|
||||||
|
])
|
||||||
|
if eval "test \"`echo '$cv_prog_cc_flag_needed_'$cache`\" = yes"; then
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
:
|
||||||
|
$3
|
||||||
|
else
|
||||||
|
if eval "test \"`echo '$cv_prog_cc_flag_needed_'$cache`\" = no"; then
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
#echo 'Test with flag is no!'
|
||||||
|
#cat conftest.c
|
||||||
|
#echo "$CC $CFLAGS $1 $ERRFLAG -c conftest.c 2>&1"
|
||||||
|
#echo `$CC $CFLAGS $1 $ERRFLAG -c conftest.c 2>&1`
|
||||||
|
#exit 1
|
||||||
|
:
|
||||||
|
$4
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT(failed)
|
||||||
|
:
|
||||||
|
$5
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl Check for CC dependency flag
|
||||||
|
dnl DEPFLAG: set to flag that generates dependencies.
|
||||||
|
AC_DEFUN(ACX_DEPFLAG,
|
||||||
|
[
|
||||||
|
AC_MSG_CHECKING([$CC dependency flag])
|
||||||
|
echo 'void f(){}' >conftest.c
|
||||||
|
if test "`$CC -MM conftest.c 2>&1`" = "conftest.o: conftest.c"; then
|
||||||
|
DEPFLAG="-MM"
|
||||||
|
else
|
||||||
|
if test "`$CC -xM1 conftest.c 2>&1`" = "conftest.o: conftest.c"; then
|
||||||
|
DEPFLAG="-xM1"
|
||||||
|
else
|
||||||
|
DEPFLAG="-MM" # dunno do something
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
AC_MSG_RESULT($DEPFLAG)
|
||||||
|
rm -f conftest.c
|
||||||
|
AC_SUBST(DEPFLAG)
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl Determine flags that gives POSIX and BSD functionality.
|
||||||
|
dnl CFLAGS is modified for the result.
|
||||||
|
AC_DEFUN(ACX_DETERMINE_EXT_FLAGS_UNBOUND,
|
||||||
|
[
|
||||||
|
ACX_CHECK_COMPILER_FLAG(std=c99, [C99FLAG="-std=c99"])
|
||||||
|
ACX_CHECK_COMPILER_FLAG(xc99, [C99FLAG="-xc99"])
|
||||||
|
|
||||||
|
AC_CHECK_HEADERS([getopt.h time.h],,, [AC_INCLUDES_DEFAULT])
|
||||||
|
|
||||||
|
ACX_CHECK_COMPILER_FLAG_NEEDED($C99FLAG -D__EXTENSIONS__ -D_BSD_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_XOPEN_SOURCE_EXTENDED=1 -D_ALL_SOURCE,
|
||||||
|
[
|
||||||
|
#include "confdefs.h"
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
#include <sys/time.h>
|
||||||
|
#ifdef HAVE_TIME_H
|
||||||
|
#include <time.h>
|
||||||
|
#endif
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <netdb.h>
|
||||||
|
#ifdef HAVE_GETOPT_H
|
||||||
|
#include <getopt.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int test() {
|
||||||
|
int a;
|
||||||
|
char **opts = NULL;
|
||||||
|
struct timeval tv;
|
||||||
|
char *t;
|
||||||
|
time_t time = 0;
|
||||||
|
char *buf = NULL;
|
||||||
|
const char* str = NULL;
|
||||||
|
struct msghdr msg;
|
||||||
|
msg.msg_control = 0;
|
||||||
|
t = ctime_r(&time, buf);
|
||||||
|
tv.tv_usec = 10;
|
||||||
|
srandom(32);
|
||||||
|
a = getopt(2, opts, "a");
|
||||||
|
a = isascii(32);
|
||||||
|
str = gai_strerror(0);
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
], [CFLAGS="$CFLAGS $C99FLAG -D__EXTENSIONS__ -D_BSD_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_XOPEN_SOURCE_EXTENDED=1 -D_ALL_SOURCE"])
|
||||||
|
|
||||||
|
ACX_CHECK_COMPILER_FLAG_NEEDED($C99FLAG -D__EXTENSIONS__ -D_BSD_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_ALL_SOURCE,
|
||||||
|
[
|
||||||
|
#include "confdefs.h"
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
#include <sys/time.h>
|
||||||
|
#ifdef HAVE_TIME_H
|
||||||
|
#include <time.h>
|
||||||
|
#endif
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <netdb.h>
|
||||||
|
#ifdef HAVE_GETOPT_H
|
||||||
|
#include <getopt.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int test() {
|
||||||
|
int a;
|
||||||
|
char **opts = NULL;
|
||||||
|
struct timeval tv;
|
||||||
|
char *t;
|
||||||
|
time_t time = 0;
|
||||||
|
char *buf = NULL;
|
||||||
|
const char* str = NULL;
|
||||||
|
struct msghdr msg;
|
||||||
|
msg.msg_control = 0;
|
||||||
|
t = ctime_r(&time, buf);
|
||||||
|
tv.tv_usec = 10;
|
||||||
|
srandom(32);
|
||||||
|
a = getopt(2, opts, "a");
|
||||||
|
a = isascii(32);
|
||||||
|
str = gai_strerror(0);
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
], [CFLAGS="$CFLAGS $C99FLAG -D__EXTENSIONS__ -D_BSD_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_ALL_SOURCE"])
|
||||||
|
|
||||||
|
ACX_CHECK_COMPILER_FLAG_NEEDED($C99FLAG,
|
||||||
|
[
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
int test() {
|
||||||
|
int a = 0;
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
], [CFLAGS="$CFLAGS $C99FLAG"])
|
||||||
|
|
||||||
|
ACX_CHECK_COMPILER_FLAG_NEEDED(-D_BSD_SOURCE,
|
||||||
|
[
|
||||||
|
#include <ctype.h>
|
||||||
|
|
||||||
|
int test() {
|
||||||
|
int a;
|
||||||
|
a = isascii(32);
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
], [CFLAGS="$CFLAGS -D_BSD_SOURCE"])
|
||||||
|
|
||||||
|
ACX_CHECK_COMPILER_FLAG_NEEDED(-D_GNU_SOURCE,
|
||||||
|
[
|
||||||
|
#include <netinet/in.h>
|
||||||
|
|
||||||
|
int test() {
|
||||||
|
struct in6_pktinfo inf;
|
||||||
|
int a = (int)sizeof(inf);
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
], [CFLAGS="$CFLAGS -D_GNU_SOURCE"])
|
||||||
|
|
||||||
|
# check again for GNU_SOURCE for setresgid. May fail if setresgid
|
||||||
|
# is not available at all. -D_FRSRESGID is to make this check unique.
|
||||||
|
# otherwise we would get the previous cached result.
|
||||||
|
ACX_CHECK_COMPILER_FLAG_NEEDED(-D_GNU_SOURCE -D_FRSRESGID,
|
||||||
|
[
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
int test() {
|
||||||
|
int a = setresgid(0,0,0);
|
||||||
|
a = setresuid(0,0,0);
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
], [CFLAGS="$CFLAGS -D_GNU_SOURCE"])
|
||||||
|
|
||||||
|
ACX_CHECK_COMPILER_FLAG_NEEDED(-D_POSIX_C_SOURCE=200112,
|
||||||
|
[
|
||||||
|
#include "confdefs.h"
|
||||||
|
#ifdef HAVE_TIME_H
|
||||||
|
#include <time.h>
|
||||||
|
#endif
|
||||||
|
#include <netdb.h>
|
||||||
|
|
||||||
|
int test() {
|
||||||
|
int a = 0;
|
||||||
|
char *t;
|
||||||
|
time_t time = 0;
|
||||||
|
char *buf = NULL;
|
||||||
|
const char* str = NULL;
|
||||||
|
t = ctime_r(&time, buf);
|
||||||
|
str = gai_strerror(0);
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
], [CFLAGS="$CFLAGS -D_POSIX_C_SOURCE=200112"])
|
||||||
|
|
||||||
|
ACX_CHECK_COMPILER_FLAG_NEEDED(-D__EXTENSIONS__,
|
||||||
|
[
|
||||||
|
#include "confdefs.h"
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
#include <sys/time.h>
|
||||||
|
#ifdef HAVE_TIME_H
|
||||||
|
#include <time.h>
|
||||||
|
#endif
|
||||||
|
#include <unistd.h>
|
||||||
|
#ifdef HAVE_GETOPT_H
|
||||||
|
#include <getopt.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int test() {
|
||||||
|
int a;
|
||||||
|
char **opts = NULL;
|
||||||
|
struct timeval tv;
|
||||||
|
tv.tv_usec = 10;
|
||||||
|
srandom(32);
|
||||||
|
a = getopt(2, opts, "a");
|
||||||
|
a = isascii(32);
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
], [CFLAGS="$CFLAGS -D__EXTENSIONS__"])
|
||||||
|
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl Check the printf-format attribute (if any)
|
||||||
|
dnl result in HAVE_ATTR_FORMAT
|
||||||
|
AC_DEFUN([ACX_CHECK_FORMAT_ATTRIBUTE],
|
||||||
|
[AC_REQUIRE([AC_PROG_CC])
|
||||||
|
AC_MSG_CHECKING(whether the C compiler (${CC-cc}) accepts the "format" attribute)
|
||||||
|
AC_CACHE_VAL(ac_cv_c_format_attribute,
|
||||||
|
[ac_cv_c_format_attribute=no
|
||||||
|
AC_TRY_COMPILE(
|
||||||
|
[#include <stdio.h>
|
||||||
|
void f (char *format, ...) __attribute__ ((format (printf, 1, 2)));
|
||||||
|
void (*pf) (char *format, ...) __attribute__ ((format (printf, 1, 2)));
|
||||||
|
], [
|
||||||
|
f ("%s", "str");
|
||||||
|
],
|
||||||
|
[ac_cv_c_format_attribute="yes"],
|
||||||
|
[ac_cv_c_format_attribute="no"])
|
||||||
|
])
|
||||||
|
|
||||||
|
AC_MSG_RESULT($ac_cv_c_format_attribute)
|
||||||
|
if test $ac_cv_c_format_attribute = yes; then
|
||||||
|
AC_DEFINE(HAVE_ATTR_FORMAT, 1, [Whether the C compiler accepts the "format" attribute])
|
||||||
|
fi
|
||||||
|
])dnl
|
||||||
|
|
||||||
|
dnl Check how to mark function arguments as unused.
|
||||||
|
dnl result in HAVE_ATTR_UNUSED
|
||||||
|
AC_DEFUN([ACX_CHECK_UNUSED_ATTRIBUTE],
|
||||||
|
[AC_REQUIRE([AC_PROG_CC])
|
||||||
|
AC_MSG_CHECKING(whether the C compiler (${CC-cc}) accepts the "unused" attribute)
|
||||||
|
AC_CACHE_VAL(ac_cv_c_unused_attribute,
|
||||||
|
[ac_cv_c_unused_attribute=no
|
||||||
|
AC_TRY_COMPILE(
|
||||||
|
[#include <stdio.h>
|
||||||
|
void f (char *u __attribute__((unused)));
|
||||||
|
], [
|
||||||
|
f ("x");
|
||||||
|
],
|
||||||
|
[ac_cv_c_unused_attribute="yes"],
|
||||||
|
[ac_cv_c_unused_attribute="no"])
|
||||||
|
])
|
||||||
|
|
||||||
|
AC_MSG_RESULT($ac_cv_c_unused_attribute)
|
||||||
|
if test $ac_cv_c_unused_attribute = yes; then
|
||||||
|
AC_DEFINE(HAVE_ATTR_UNUSED, 1, [Whether the C compiler accepts the "unused" attribute])
|
||||||
|
fi
|
||||||
|
])dnl
|
||||||
|
|
||||||
|
dnl Perform libtool check, portably, only for C
|
||||||
|
AC_DEFUN(ACX_LIBTOOL_C_ONLY, [
|
||||||
|
# skip these tests, we do not need them.
|
||||||
|
AC_DEFUN([AC_PROG_F77], [:])
|
||||||
|
AC_DEFUN([AC_PROG_FC], [:])
|
||||||
|
AC_DEFUN([AC_PROG_CXX], [:])
|
||||||
|
AC_DEFUN([AC_PROG_CXXCPP], [:])
|
||||||
|
AC_DEFUN([AC_PROG_OBJC], [:])
|
||||||
|
AC_DEFUN([AC_PROG_OBJCCPP], [:])
|
||||||
|
AC_DEFUN([AC_LIBTOOL_CXX], [:])
|
||||||
|
AC_DEFUN([AC_LIBTOOL_F77], [:])
|
||||||
|
# always use ./libtool unless override from commandline (libtool=mylibtool)
|
||||||
|
if test -z "$libtool"; then
|
||||||
|
libtool="./libtool"
|
||||||
|
fi
|
||||||
|
AC_SUBST(libtool)
|
||||||
|
AC_PATH_TOOL(AR, ar, [false])
|
||||||
|
if test $AR = false; then
|
||||||
|
AC_MSG_ERROR([Cannot find 'ar', please extend PATH to include it])
|
||||||
|
fi
|
||||||
|
# avoid libtool max commandline length test on systems that fork slowly.
|
||||||
|
AC_CANONICAL_HOST
|
||||||
|
if echo "$host_os" | grep "sunos4" >/dev/null; then
|
||||||
|
lt_cv_sys_max_cmd_len=32750;
|
||||||
|
fi
|
||||||
|
AC_PROG_LIBTOOL
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl End of file
|
||||||
|
|
@ -1,9 +1,7 @@
|
||||||
/* Just a replacement, if the original malloc is not
|
/* Just a replacement, if the original malloc is not
|
||||||
GNU-compliant. See autoconf documentation. */
|
GNU-compliant. See autoconf documentation. */
|
||||||
|
|
||||||
#if HAVE_CONFIG_H
|
#include "config.h"
|
||||||
#include <config.h>
|
|
||||||
#endif
|
|
||||||
#undef malloc
|
#undef malloc
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
|
||||||
391
configure.ac
391
configure.ac
|
|
@ -1,6 +1,8 @@
|
||||||
# -*- Autoconf -*-
|
# -*- Autoconf -*-
|
||||||
# Process this file with autoconf to produce a configure script.
|
# Process this file with autoconf to produce a configure script.
|
||||||
AC_PREREQ(2.56)
|
AC_PREREQ(2.56)
|
||||||
|
sinclude(acx_nlnetlabs.m4)
|
||||||
|
sinclude(acx_pthread.m4)
|
||||||
|
|
||||||
AC_INIT(unbound, 1.3.0, unbound-bugs@nlnetlabs.nl, unbound)
|
AC_INIT(unbound, 1.3.0, unbound-bugs@nlnetlabs.nl, unbound)
|
||||||
|
|
||||||
|
|
@ -67,8 +69,7 @@ AC_ARG_WITH([conf_file],
|
||||||
[Pathname to the Unbound configuration file]),
|
[Pathname to the Unbound configuration file]),
|
||||||
[ub_conf_file="$withval"])
|
[ub_conf_file="$withval"])
|
||||||
AC_SUBST(ub_conf_file)
|
AC_SUBST(ub_conf_file)
|
||||||
# escape backslashes in the path for the C preprocessor
|
ACX_ESCAPE_BACKSLASH($ub_conf_file, hdr_config)
|
||||||
hdr_config="`echo $ub_conf_file | sed -e 's/\\\\/\\\\\\\\/g'`"
|
|
||||||
AC_DEFINE_UNQUOTED(CONFIGFILE, ["$hdr_config"], [Pathname to the Unbound configuration file])
|
AC_DEFINE_UNQUOTED(CONFIGFILE, ["$hdr_config"], [Pathname to the Unbound configuration file])
|
||||||
|
|
||||||
# Determine run, chroot directory and pidfile locations
|
# Determine run, chroot directory and pidfile locations
|
||||||
|
|
@ -83,7 +84,7 @@ else
|
||||||
fi
|
fi
|
||||||
)
|
)
|
||||||
AC_SUBST(UNBOUND_RUN_DIR)
|
AC_SUBST(UNBOUND_RUN_DIR)
|
||||||
hdr_run="`echo $UNBOUND_RUN_DIR | sed -e 's/\\\\/\\\\\\\\/g'`"
|
ACX_ESCAPE_BACKSLASH($UNBOUND_RUN_DIR, hdr_run)
|
||||||
AC_DEFINE_UNQUOTED(RUN_DIR, ["$hdr_run"], [Directory to chdir to])
|
AC_DEFINE_UNQUOTED(RUN_DIR, ["$hdr_run"], [Directory to chdir to])
|
||||||
|
|
||||||
AC_ARG_WITH(chroot-dir,
|
AC_ARG_WITH(chroot-dir,
|
||||||
|
|
@ -97,7 +98,7 @@ else
|
||||||
fi
|
fi
|
||||||
)
|
)
|
||||||
AC_SUBST(UNBOUND_CHROOT_DIR)
|
AC_SUBST(UNBOUND_CHROOT_DIR)
|
||||||
hdr_chroot="`echo $UNBOUND_CHROOT_DIR | sed -e 's/\\\\/\\\\\\\\/g'`"
|
ACX_ESCAPE_BACKSLASH($UNBOUND_CHOOT_DIR, hdr_chroot)
|
||||||
AC_DEFINE_UNQUOTED(CHROOT_DIR, ["$hdr_chroot"], [Directory to chroot to])
|
AC_DEFINE_UNQUOTED(CHROOT_DIR, ["$hdr_chroot"], [Directory to chroot to])
|
||||||
|
|
||||||
AC_ARG_WITH(pidfile,
|
AC_ARG_WITH(pidfile,
|
||||||
|
|
@ -111,7 +112,7 @@ else
|
||||||
fi
|
fi
|
||||||
)
|
)
|
||||||
AC_SUBST(UNBOUND_PIDFILE)
|
AC_SUBST(UNBOUND_PIDFILE)
|
||||||
hdr_pid="`echo $UNBOUND_PIDFILE | sed -e 's/\\\\/\\\\\\\\/g'`"
|
ACX_ESCAPE_BACKSLASH($UNBOUND_PIDFILE, hdr_pid)
|
||||||
AC_DEFINE_UNQUOTED(PIDFILE, ["$hdr_pid"], [default pidfile location])
|
AC_DEFINE_UNQUOTED(PIDFILE, ["$hdr_pid"], [default pidfile location])
|
||||||
|
|
||||||
AC_ARG_WITH(username,
|
AC_ARG_WITH(username,
|
||||||
|
|
@ -123,307 +124,32 @@ AC_SUBST(UNBOUND_USERNAME)
|
||||||
AC_DEFINE_UNQUOTED(UB_USERNAME, ["$UNBOUND_USERNAME"], [default username])
|
AC_DEFINE_UNQUOTED(UB_USERNAME, ["$UNBOUND_USERNAME"], [default username])
|
||||||
|
|
||||||
AC_DEFINE(WINVER, 0x0502, [the version of the windows API enabled])
|
AC_DEFINE(WINVER, 0x0502, [the version of the windows API enabled])
|
||||||
dnl compute package version for windows res files, the first four numbers.
|
ACX_RSRC_VERSION(wnvs)
|
||||||
[
|
|
||||||
wnvs=`echo $PACKAGE_VERSION | sed -e 's/^[^0-9]*\([0-9]\)[^0-9]*\([0-9]\)[^0-9]*\([0-9]\)[^0-9]*\([0-9]\).*$/\1,\2,\3,\4/' -e 's/^[^0-9]*\([0-9]\)[^0-9]*\([0-9]\)[^0-9]*\([0-9]\)[^0-9]*$/\1,\2,\3,0/' `
|
|
||||||
]
|
|
||||||
AC_DEFINE_UNQUOTED(RSRC_PACKAGE_VERSION, [$wnvs], [version number for resource files])
|
AC_DEFINE_UNQUOTED(RSRC_PACKAGE_VERSION, [$wnvs], [version number for resource files])
|
||||||
|
|
||||||
dnl routine to help check for compiler flags.
|
|
||||||
AC_DEFUN([CHECK_COMPILER_FLAG],
|
|
||||||
[
|
|
||||||
AC_REQUIRE([AC_PROG_CC])
|
|
||||||
AC_MSG_CHECKING(whether $CC supports -$1)
|
|
||||||
cache=`echo $1 | sed 'y%.=/+-%___p_%'`
|
|
||||||
AC_CACHE_VAL(cv_prog_cc_flag_$cache,
|
|
||||||
[
|
|
||||||
echo 'void f(){}' >conftest.c
|
|
||||||
if test -z "`$CC -$1 -c conftest.c 2>&1`"; then
|
|
||||||
eval "cv_prog_cc_flag_$cache=yes"
|
|
||||||
else
|
|
||||||
eval "cv_prog_cc_flag_$cache=no"
|
|
||||||
fi
|
|
||||||
rm -f conftest conftest.o conftest.c
|
|
||||||
])
|
|
||||||
if eval "test \"`echo '$cv_prog_cc_flag_'$cache`\" = yes"; then
|
|
||||||
AC_MSG_RESULT(yes)
|
|
||||||
:
|
|
||||||
$2
|
|
||||||
else
|
|
||||||
AC_MSG_RESULT(no)
|
|
||||||
:
|
|
||||||
$3
|
|
||||||
fi
|
|
||||||
])
|
|
||||||
|
|
||||||
dnl setup flags for CHECK_COMPILER_FLAG_NEEDED
|
|
||||||
AC_DEFUN([CHECK_ERROR_FLAGS],
|
|
||||||
[
|
|
||||||
CHECK_COMPILER_FLAG(Werror, [ERRFLAG="-Werror"], [ERRFLAG="-errwarn"])
|
|
||||||
CHECK_COMPILER_FLAG(Wall, [ERRFLAG="$ERRFLAG -Wall"],
|
|
||||||
[ERRFLAG="$ERRFLAG -errfmt"])
|
|
||||||
])
|
|
||||||
|
|
||||||
dnl routine to help check for needed compiler flags.
|
|
||||||
# if the given code compiles without the flag, execute argument 4
|
|
||||||
# if the given code only compiles with the flag, execute argument 3
|
|
||||||
# otherwise fail, execute argument 5.
|
|
||||||
AC_DEFUN([CHECK_COMPILER_FLAG_NEEDED],
|
|
||||||
[
|
|
||||||
AC_REQUIRE([AC_PROG_CC])
|
|
||||||
AC_REQUIRE([CHECK_ERROR_FLAGS])
|
|
||||||
AC_MSG_CHECKING(whether we need $1 as a flag for $CC)
|
|
||||||
cache=`echo $1 | sed 'y%.=/+- %___p__%'`
|
|
||||||
AC_CACHE_VAL(cv_prog_cc_flag_needed_$cache,
|
|
||||||
[
|
|
||||||
echo '$2' > conftest.c
|
|
||||||
echo 'void f(){}' >>conftest.c
|
|
||||||
if test -z "`$CC $CFLAGS $ERRFLAG -c conftest.c 2>&1`"; then
|
|
||||||
eval "cv_prog_cc_flag_needed_$cache=no"
|
|
||||||
else
|
|
||||||
[
|
|
||||||
if test -z "`$CC $CFLAGS $1 $ERRFLAG -c conftest.c 2>&1`"; then
|
|
||||||
eval "cv_prog_cc_flag_needed_$cache=yes"
|
|
||||||
else
|
|
||||||
eval "cv_prog_cc_flag_needed_$cache=fail"
|
|
||||||
#echo 'Test with flag fails too!'
|
|
||||||
#cat conftest.c
|
|
||||||
#echo "$CC $CFLAGS $1 $ERRFLAG -c conftest.c 2>&1"
|
|
||||||
#echo `$CC $CFLAGS $1 $ERRFLAG -c conftest.c 2>&1`
|
|
||||||
#exit 1
|
|
||||||
fi
|
|
||||||
]
|
|
||||||
fi
|
|
||||||
rm -f conftest conftest.c conftest.o
|
|
||||||
])
|
|
||||||
if eval "test \"`echo '$cv_prog_cc_flag_needed_'$cache`\" = yes"; then
|
|
||||||
AC_MSG_RESULT(yes)
|
|
||||||
:
|
|
||||||
$3
|
|
||||||
else
|
|
||||||
if eval "test \"`echo '$cv_prog_cc_flag_needed_'$cache`\" = no"; then
|
|
||||||
AC_MSG_RESULT(no)
|
|
||||||
#echo 'Test with flag is no!'
|
|
||||||
#cat conftest.c
|
|
||||||
#echo "$CC $CFLAGS $1 $ERRFLAG -c conftest.c 2>&1"
|
|
||||||
#echo `$CC $CFLAGS $1 $ERRFLAG -c conftest.c 2>&1`
|
|
||||||
#exit 1
|
|
||||||
:
|
|
||||||
$4
|
|
||||||
else
|
|
||||||
AC_MSG_RESULT(failed)
|
|
||||||
:
|
|
||||||
$5
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
])
|
|
||||||
|
|
||||||
# Checks for typedefs, structures, and compiler characteristics.
|
# Checks for typedefs, structures, and compiler characteristics.
|
||||||
AC_C_CONST
|
AC_C_CONST
|
||||||
AC_LANG_C
|
AC_LANG_C
|
||||||
CHECK_COMPILER_FLAG(g, [CFLAGS="$CFLAGS -g"])
|
ACX_CHECK_COMPILER_FLAG(g, [CFLAGS="$CFLAGS -g"])
|
||||||
CHECK_COMPILER_FLAG(O2, [CFLAGS="$CFLAGS -O2"])
|
ACX_CHECK_COMPILER_FLAG(O2, [CFLAGS="$CFLAGS -O2"])
|
||||||
|
AC_PROG_CC
|
||||||
# test DEPFLAG
|
|
||||||
AC_MSG_CHECKING([$CC dependency flag])
|
|
||||||
echo 'void f(){}' >conftest.c
|
|
||||||
if test "`$CC -MM conftest.c 2>&1`" = "conftest.o: conftest.c"; then
|
|
||||||
DEPFLAG="-MM"
|
|
||||||
else
|
|
||||||
if test "`$CC -xM1 conftest.c 2>&1`" = "conftest.o: conftest.c"; then
|
|
||||||
DEPFLAG="-xM1"
|
|
||||||
else
|
|
||||||
DEPFLAG="-MM" # dunno do something
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
AC_MSG_RESULT($DEPFLAG)
|
|
||||||
rm -f conftest.c
|
|
||||||
AC_SUBST(DEPFLAG)
|
|
||||||
|
|
||||||
CHECK_COMPILER_FLAG(std=c99, [C99FLAG="-std=c99"])
|
|
||||||
CHECK_COMPILER_FLAG(xc99, [C99FLAG="-xc99"])
|
|
||||||
|
|
||||||
AC_CHECK_HEADERS([getopt.h time.h],,, [AC_INCLUDES_DEFAULT])
|
|
||||||
|
|
||||||
# MinGW32 tests
|
|
||||||
AC_CHECK_HEADERS([winsock2.h ws2tcpip.h],,, [AC_INCLUDES_DEFAULT])
|
AC_CHECK_HEADERS([winsock2.h ws2tcpip.h],,, [AC_INCLUDES_DEFAULT])
|
||||||
# end mingw32 tests
|
ACX_DEPFLAG
|
||||||
|
ACX_DETERMINE_EXT_FLAGS_UNBOUND
|
||||||
CHECK_COMPILER_FLAG_NEEDED($C99FLAG -D__EXTENSIONS__ -D_BSD_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_XOPEN_SOURCE_EXTENDED=1 -D_ALL_SOURCE,
|
|
||||||
[
|
|
||||||
#include "confdefs.h"
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <ctype.h>
|
|
||||||
#include <sys/time.h>
|
|
||||||
#ifdef HAVE_TIME_H
|
|
||||||
#include <time.h>
|
|
||||||
#endif
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <netdb.h>
|
|
||||||
#ifdef HAVE_GETOPT_H
|
|
||||||
#include <getopt.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
int test() {
|
|
||||||
int a;
|
|
||||||
char **opts = NULL;
|
|
||||||
struct timeval tv;
|
|
||||||
char *t;
|
|
||||||
time_t time = 0;
|
|
||||||
char *buf = NULL;
|
|
||||||
const char* str = NULL;
|
|
||||||
struct msghdr msg;
|
|
||||||
msg.msg_control = 0;
|
|
||||||
t = ctime_r(&time, buf);
|
|
||||||
tv.tv_usec = 10;
|
|
||||||
srandom(32);
|
|
||||||
a = getopt(2, opts, "a");
|
|
||||||
a = isascii(32);
|
|
||||||
str = gai_strerror(0);
|
|
||||||
return a;
|
|
||||||
}
|
|
||||||
], [CFLAGS="$CFLAGS $C99FLAG -D__EXTENSIONS__ -D_BSD_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_XOPEN_SOURCE_EXTENDED=1 -D_ALL_SOURCE"])
|
|
||||||
|
|
||||||
CHECK_COMPILER_FLAG_NEEDED($C99FLAG -D__EXTENSIONS__ -D_BSD_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_ALL_SOURCE,
|
|
||||||
[
|
|
||||||
#include "confdefs.h"
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <ctype.h>
|
|
||||||
#include <sys/time.h>
|
|
||||||
#ifdef HAVE_TIME_H
|
|
||||||
#include <time.h>
|
|
||||||
#endif
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <netdb.h>
|
|
||||||
#ifdef HAVE_GETOPT_H
|
|
||||||
#include <getopt.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
int test() {
|
|
||||||
int a;
|
|
||||||
char **opts = NULL;
|
|
||||||
struct timeval tv;
|
|
||||||
char *t;
|
|
||||||
time_t time = 0;
|
|
||||||
char *buf = NULL;
|
|
||||||
const char* str = NULL;
|
|
||||||
struct msghdr msg;
|
|
||||||
msg.msg_control = 0;
|
|
||||||
t = ctime_r(&time, buf);
|
|
||||||
tv.tv_usec = 10;
|
|
||||||
srandom(32);
|
|
||||||
a = getopt(2, opts, "a");
|
|
||||||
a = isascii(32);
|
|
||||||
str = gai_strerror(0);
|
|
||||||
return a;
|
|
||||||
}
|
|
||||||
], [CFLAGS="$CFLAGS $C99FLAG -D__EXTENSIONS__ -D_BSD_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_ALL_SOURCE"])
|
|
||||||
|
|
||||||
CHECK_COMPILER_FLAG_NEEDED($C99FLAG,
|
|
||||||
[
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <ctype.h>
|
|
||||||
int test() {
|
|
||||||
int a = 0;
|
|
||||||
return a;
|
|
||||||
}
|
|
||||||
], [CFLAGS="$CFLAGS $C99FLAG"])
|
|
||||||
|
|
||||||
CHECK_COMPILER_FLAG_NEEDED(-D_BSD_SOURCE,
|
|
||||||
[
|
|
||||||
#include <ctype.h>
|
|
||||||
|
|
||||||
int test() {
|
|
||||||
int a;
|
|
||||||
a = isascii(32);
|
|
||||||
return a;
|
|
||||||
}
|
|
||||||
], [CFLAGS="$CFLAGS -D_BSD_SOURCE"])
|
|
||||||
|
|
||||||
CHECK_COMPILER_FLAG_NEEDED(-D_GNU_SOURCE,
|
|
||||||
[
|
|
||||||
#include <netinet/in.h>
|
|
||||||
|
|
||||||
int test() {
|
|
||||||
struct in6_pktinfo inf;
|
|
||||||
int a = (int)sizeof(inf);
|
|
||||||
return a;
|
|
||||||
}
|
|
||||||
], [CFLAGS="$CFLAGS -D_GNU_SOURCE"])
|
|
||||||
|
|
||||||
# check again for GNU_SOURCE for setresgid. May fail if setresgid
|
|
||||||
# is not available at all. -D_FRSRESGID is to make this check unique.
|
|
||||||
# otherwise we would get the previous cached result.
|
|
||||||
CHECK_COMPILER_FLAG_NEEDED(-D_GNU_SOURCE -D_FRSRESGID,
|
|
||||||
[
|
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
int test() {
|
|
||||||
int a = setresgid(0,0,0);
|
|
||||||
a = setresuid(0,0,0);
|
|
||||||
return a;
|
|
||||||
}
|
|
||||||
], [CFLAGS="$CFLAGS -D_GNU_SOURCE"])
|
|
||||||
|
|
||||||
CHECK_COMPILER_FLAG_NEEDED(-D_POSIX_C_SOURCE=200112,
|
|
||||||
[
|
|
||||||
#include "confdefs.h"
|
|
||||||
#ifdef HAVE_TIME_H
|
|
||||||
#include <time.h>
|
|
||||||
#endif
|
|
||||||
#include <netdb.h>
|
|
||||||
|
|
||||||
int test() {
|
|
||||||
int a = 0;
|
|
||||||
char *t;
|
|
||||||
time_t time = 0;
|
|
||||||
char *buf = NULL;
|
|
||||||
const char* str = NULL;
|
|
||||||
t = ctime_r(&time, buf);
|
|
||||||
str = gai_strerror(0);
|
|
||||||
return a;
|
|
||||||
}
|
|
||||||
], [CFLAGS="$CFLAGS -D_POSIX_C_SOURCE=200112"])
|
|
||||||
|
|
||||||
CHECK_COMPILER_FLAG_NEEDED(-D__EXTENSIONS__,
|
|
||||||
[
|
|
||||||
#include "confdefs.h"
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <ctype.h>
|
|
||||||
#include <sys/time.h>
|
|
||||||
#ifdef HAVE_TIME_H
|
|
||||||
#include <time.h>
|
|
||||||
#endif
|
|
||||||
#include <unistd.h>
|
|
||||||
#ifdef HAVE_GETOPT_H
|
|
||||||
#include <getopt.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
int test() {
|
|
||||||
int a;
|
|
||||||
char **opts = NULL;
|
|
||||||
struct timeval tv;
|
|
||||||
tv.tv_usec = 10;
|
|
||||||
srandom(32);
|
|
||||||
a = getopt(2, opts, "a");
|
|
||||||
a = isascii(32);
|
|
||||||
return a;
|
|
||||||
}
|
|
||||||
], [CFLAGS="$CFLAGS -D__EXTENSIONS__"])
|
|
||||||
|
|
||||||
# for Sun studio 11.
|
# for Sun studio 11.
|
||||||
CHECK_COMPILER_FLAG(xO4, [CFLAGS="$CFLAGS -xO4"])
|
ACX_CHECK_COMPILER_FLAG(xO4, [CFLAGS="$CFLAGS -xO4"])
|
||||||
CHECK_COMPILER_FLAG(xtarget=generic, [CFLAGS="$CFLAGS -xtarget=generic"])
|
ACX_CHECK_COMPILER_FLAG(xtarget=generic, [CFLAGS="$CFLAGS -xtarget=generic"])
|
||||||
# flag warnings.
|
# flag warnings.
|
||||||
AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [Enable debug warnings, asserts, makefile-dependencies]))
|
AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [Enable debug warnings, asserts, makefile-dependencies]))
|
||||||
debug_enabled="$enable_debug"
|
debug_enabled="$enable_debug"
|
||||||
AC_SUBST(debug_enabled)
|
AC_SUBST(debug_enabled)
|
||||||
case "$enable_debug" in
|
case "$enable_debug" in
|
||||||
yes)
|
yes)
|
||||||
CHECK_COMPILER_FLAG(W, [CFLAGS="$CFLAGS -W"])
|
ACX_CHECK_COMPILER_FLAG(W, [CFLAGS="$CFLAGS -W"])
|
||||||
CHECK_COMPILER_FLAG(Wall, [CFLAGS="$CFLAGS -Wall"])
|
ACX_CHECK_COMPILER_FLAG(Wall, [CFLAGS="$CFLAGS -Wall"])
|
||||||
CHECK_COMPILER_FLAG(Wextra, [CFLAGS="$CFLAGS -Wextra"])
|
ACX_CHECK_COMPILER_FLAG(Wextra, [CFLAGS="$CFLAGS -Wextra"])
|
||||||
CHECK_COMPILER_FLAG(Wdeclaration-after-statement, [CFLAGS="$CFLAGS -Wdeclaration-after-statement"])
|
ACX_CHECK_COMPILER_FLAG(Wdeclaration-after-statement, [CFLAGS="$CFLAGS -Wdeclaration-after-statement"])
|
||||||
AC_DEFINE([UNBOUND_DEBUG], [], [define this to enable debug checks.])
|
AC_DEFINE([UNBOUND_DEBUG], [], [define this to enable debug checks.])
|
||||||
;;
|
;;
|
||||||
no|*)
|
no|*)
|
||||||
|
|
@ -432,87 +158,19 @@ case "$enable_debug" in
|
||||||
esac
|
esac
|
||||||
|
|
||||||
AC_C_INLINE
|
AC_C_INLINE
|
||||||
|
ACX_CHECK_FORMAT_ATTRIBUTE
|
||||||
AC_DEFUN([AC_CHECK_FORMAT_ATTRIBUTE],
|
ACX_CHECK_UNUSED_ATTRIBUTE
|
||||||
[AC_REQUIRE([AC_PROG_CC])
|
|
||||||
AC_MSG_CHECKING(whether the C compiler (${CC-cc}) accepts the "format" attribute)
|
|
||||||
AC_CACHE_VAL(ac_cv_c_format_attribute,
|
|
||||||
[ac_cv_c_format_attribute=no
|
|
||||||
AC_TRY_COMPILE(
|
|
||||||
[#include <stdio.h>
|
|
||||||
void f (char *format, ...) __attribute__ ((format (printf, 1, 2)));
|
|
||||||
void (*pf) (char *format, ...) __attribute__ ((format (printf, 1, 2)));
|
|
||||||
], [
|
|
||||||
f ("%s", "str");
|
|
||||||
],
|
|
||||||
[ac_cv_c_format_attribute="yes"],
|
|
||||||
[ac_cv_c_format_attribute="no"])
|
|
||||||
])
|
|
||||||
|
|
||||||
AC_MSG_RESULT($ac_cv_c_format_attribute)
|
|
||||||
if test $ac_cv_c_format_attribute = yes; then
|
|
||||||
AC_DEFINE(HAVE_ATTR_FORMAT, 1, [Whether the C compiler accepts the "format" attribute])
|
|
||||||
fi
|
|
||||||
])dnl
|
|
||||||
|
|
||||||
AC_DEFUN([AC_CHECK_UNUSED_ATTRIBUTE],
|
|
||||||
[AC_REQUIRE([AC_PROG_CC])
|
|
||||||
AC_MSG_CHECKING(whether the C compiler (${CC-cc}) accepts the "unused" attribute)
|
|
||||||
AC_CACHE_VAL(ac_cv_c_unused_attribute,
|
|
||||||
[ac_cv_c_unused_attribute=no
|
|
||||||
AC_TRY_COMPILE(
|
|
||||||
[#include <stdio.h>
|
|
||||||
void f (char *u __attribute__((unused)));
|
|
||||||
], [
|
|
||||||
f ("x");
|
|
||||||
],
|
|
||||||
[ac_cv_c_unused_attribute="yes"],
|
|
||||||
[ac_cv_c_unused_attribute="no"])
|
|
||||||
])
|
|
||||||
|
|
||||||
AC_MSG_RESULT($ac_cv_c_unused_attribute)
|
|
||||||
if test $ac_cv_c_unused_attribute = yes; then
|
|
||||||
AC_DEFINE(HAVE_ATTR_UNUSED, 1, [Whether the C compiler accepts the "unused" attribute])
|
|
||||||
fi
|
|
||||||
])dnl
|
|
||||||
|
|
||||||
AC_CHECK_FORMAT_ATTRIBUTE
|
|
||||||
AC_CHECK_UNUSED_ATTRIBUTE
|
|
||||||
|
|
||||||
if test "$srcdir" != "."; then
|
if test "$srcdir" != "."; then
|
||||||
CPPFLAGS="$CPPFLAGS -I$srcdir"
|
CPPFLAGS="$CPPFLAGS -I$srcdir"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# skip these tests, we do not need them.
|
|
||||||
AC_DEFUN([AC_PROG_F77], [:])
|
|
||||||
AC_DEFUN([AC_PROG_FC], [:])
|
|
||||||
AC_DEFUN([AC_PROG_CXX], [:])
|
|
||||||
AC_DEFUN([AC_PROG_CXXCPP], [:])
|
|
||||||
AC_DEFUN([AC_PROG_OBJC], [:])
|
|
||||||
AC_DEFUN([AC_PROG_OBJCCPP], [:])
|
|
||||||
AC_DEFUN([AC_LIBTOOL_CXX], [:])
|
|
||||||
AC_DEFUN([AC_LIBTOOL_F77], [:])
|
|
||||||
# always use ./libtool unless override from commandline (libtool=mylibtool)
|
|
||||||
if test -z "$libtool"; then
|
|
||||||
libtool="./libtool"
|
|
||||||
fi
|
|
||||||
AC_SUBST(libtool)
|
|
||||||
AC_PATH_TOOL(AR, ar, [false])
|
|
||||||
if test $AR = false; then
|
|
||||||
AC_MSG_ERROR([Cannot find 'ar', please extend PATH to include it])
|
|
||||||
fi
|
|
||||||
AC_CHECK_PROG(doxygen, doxygen, doxygen)
|
|
||||||
# avoid libtool max commandline length test on systems that fork slowly.
|
|
||||||
AC_CANONICAL_HOST
|
|
||||||
if echo "$host_os" | grep "sunos4" >/dev/null; then
|
|
||||||
lt_cv_sys_max_cmd_len=32750;
|
|
||||||
fi
|
|
||||||
AC_PROG_LEX
|
AC_PROG_LEX
|
||||||
AC_PROG_YACC
|
AC_PROG_YACC
|
||||||
AC_PROG_LIBTOOL
|
AC_CHECK_PROG(doxygen, doxygen, doxygen)
|
||||||
|
ACX_LIBTOOL_C_ONLY
|
||||||
|
|
||||||
# Checks for header files.
|
# Checks for header files.
|
||||||
AC_HEADER_STDC
|
|
||||||
AC_CHECK_HEADERS([stdarg.h stdbool.h netinet/in.h sys/param.h sys/socket.h sys/uio.h sys/resource.h arpa/inet.h syslog.h netdb.h sys/wait.h pwd.h glob.h grp.h login_cap.h],,, [AC_INCLUDES_DEFAULT])
|
AC_CHECK_HEADERS([stdarg.h stdbool.h netinet/in.h sys/param.h sys/socket.h sys/uio.h sys/resource.h arpa/inet.h syslog.h netdb.h sys/wait.h pwd.h glob.h grp.h login_cap.h],,, [AC_INCLUDES_DEFAULT])
|
||||||
|
|
||||||
# check for types
|
# check for types
|
||||||
|
|
@ -666,7 +324,6 @@ AC_ARG_WITH(pthreads, AC_HELP_STRING([--with-pthreads],
|
||||||
[ ],[ withval="yes" ])
|
[ ],[ withval="yes" ])
|
||||||
ub_have_pthreads=no
|
ub_have_pthreads=no
|
||||||
if test x_$withval != x_no; then
|
if test x_$withval != x_no; then
|
||||||
sinclude(acx_pthread.m4)
|
|
||||||
ACX_PTHREAD([
|
ACX_PTHREAD([
|
||||||
AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads libraries and header files.])
|
AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads libraries and header files.])
|
||||||
LIBS="$PTHREAD_LIBS $LIBS"
|
LIBS="$PTHREAD_LIBS $LIBS"
|
||||||
|
|
@ -689,7 +346,7 @@ if test x_$withval != x_no; then
|
||||||
[
|
[
|
||||||
AC_DEFINE(HAVE_SOLARIS_THREADS, 1, [Using Solaris threads])
|
AC_DEFINE(HAVE_SOLARIS_THREADS, 1, [Using Solaris threads])
|
||||||
|
|
||||||
CHECK_COMPILER_FLAG(mt, [CFLAGS="$CFLAGS -mt"],
|
ACX_CHECK_COMPILER_FLAG(mt, [CFLAGS="$CFLAGS -mt"],
|
||||||
[CFLAGS="$CFLAGS -D_REENTRANT"])
|
[CFLAGS="$CFLAGS -D_REENTRANT"])
|
||||||
ub_have_sol_threads=yes
|
ub_have_sol_threads=yes
|
||||||
] , [
|
] , [
|
||||||
|
|
@ -822,7 +479,7 @@ AC_TYPE_SIGNAL
|
||||||
AC_FUNC_FSEEKO
|
AC_FUNC_FSEEKO
|
||||||
AC_SYS_LARGEFILE
|
AC_SYS_LARGEFILE
|
||||||
dnl try to see if an additional _LARGEFILE_SOURCE 1 is needed to get fseeko
|
dnl try to see if an additional _LARGEFILE_SOURCE 1 is needed to get fseeko
|
||||||
CHECK_COMPILER_FLAG_NEEDED(-D_LARGEFILE_SOURCE=1,
|
ACX_CHECK_COMPILER_FLAG_NEEDED(-D_LARGEFILE_SOURCE=1,
|
||||||
[
|
[
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
int test() {
|
int test() {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
23 March 2009: Wouter
|
23 March 2009: Wouter
|
||||||
- added launchd plist example file for MacOSX to contrib.
|
- added launchd plist example file for MacOSX to contrib.
|
||||||
- deprecation test for daemon(3).
|
- deprecation test for daemon(3).
|
||||||
|
- moved common configure actions to m4 include, prettier Makefile.
|
||||||
|
|
||||||
20 March 2009: Wouter
|
20 March 2009: Wouter
|
||||||
- bug #239: module-config entries order is important. Documented.
|
- bug #239: module-config entries order is important. Documented.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue