From: Pieter Lexis Date: Fri, 2 Sep 2016 07:31:57 +0000 (+0200) Subject: auth: remove autoconf leftover from before the split X-Git-Tag: dnsdist-1.1.0-beta2~164^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=640d4463ac8b74b0098b7768251e0fbfce6f6ed6;p=thirdparty%2Fpdns.git auth: remove autoconf leftover from before the split --- diff --git a/Makefile.am b/Makefile.am index 7d3812d1b1..b8b2c27c43 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,8 +1,6 @@ SUBDIRS = ext modules codedocs docs -if WITH_PDNS_SERVER - SUBDIRS += pdns -endif +SUBDIRS += pdns EXTRA_DIST = \ INSTALL \ diff --git a/configure.ac b/configure.ac index 050613cd6b..a74daf50ee 100644 --- a/configure.ac +++ b/configure.ac @@ -160,15 +160,6 @@ AC_SUBST([moduleobjects]) AC_SUBST([modulelibs]) AC_DEFINE_UNQUOTED([PDNS_MODULES], "$modules", [Built-in modules]) -AC_MSG_CHECKING([whether we will be building the server]) -AC_ARG_ENABLE([pdns-server], - [AS_HELP_STRING([--enable-pdns_server], [if we should build the server @<:@default=yes@:>@])], - [enable_pdns_server=$enableval], - [enable_pdns_server=yes] -) -AC_MSG_RESULT([$enable_pdns_server]) -AM_CONDITIONAL([WITH_PDNS_SERVER], [test "x$enable_pdns_server" != "xno"]) - AC_ARG_ENABLE([gcc-skip-locking], [AS_HELP_STRING([--enable-gcc-skip-locking], [if we should forcefully skip gcc locking @<:@default=no@:>@])], [AC_DEFINE(GCC_SKIP_LOCKING,[], [Skip gcc locking])],