From: Ruben Kerkhof Date: Mon, 21 Mar 2016 19:26:48 +0000 (+0100) Subject: pdns: stop checking for libedit X-Git-Tag: dnsdist-1.0.0-beta1~33^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c242ce3844ee1b70297a0a1a69c01904b9bae735;p=thirdparty%2Fpdns.git pdns: stop checking for libedit --- diff --git a/configure.ac b/configure.ac index 2a1f955163..31d2e1584e 100644 --- a/configure.ac +++ b/configure.ac @@ -112,7 +112,6 @@ AX_CHECK_OPENSSL([ ] ) -PDNS_CHECK_LIBEDIT PDNS_CHECK_RAGEL PDNS_CHECK_CLOCK_GETTIME diff --git a/m4/pdns_check_libedit.m4 b/m4/pdns_check_libedit.m4 deleted file mode 100644 index 0d42407df2..0000000000 --- a/m4/pdns_check_libedit.m4 +++ /dev/null @@ -1,9 +0,0 @@ -AC_DEFUN([PDNS_CHECK_LIBEDIT], [ - PKG_CHECK_MODULES(LIBEDIT, libedit, [], [ - AS_IF([test "$1" = "mandatory"],[ - AS_IF([test x"$LIBEDIT_LIBS" = "x"],[ - AC_MSG_ERROR([libedit support is mandatory]) - ]) - ]) - ]) -]) diff --git a/pdns/dnsdistdist/m4/pdns_check_libedit.m4 b/pdns/dnsdistdist/m4/pdns_check_libedit.m4 deleted file mode 120000 index e8ffe5eae5..0000000000 --- a/pdns/dnsdistdist/m4/pdns_check_libedit.m4 +++ /dev/null @@ -1 +0,0 @@ -../../../m4/pdns_check_libedit.m4 \ No newline at end of file diff --git a/pdns/dnsdistdist/m4/pdns_check_libedit.m4 b/pdns/dnsdistdist/m4/pdns_check_libedit.m4 new file mode 100644 index 0000000000..0d42407df2 --- /dev/null +++ b/pdns/dnsdistdist/m4/pdns_check_libedit.m4 @@ -0,0 +1,9 @@ +AC_DEFUN([PDNS_CHECK_LIBEDIT], [ + PKG_CHECK_MODULES(LIBEDIT, libedit, [], [ + AS_IF([test "$1" = "mandatory"],[ + AS_IF([test x"$LIBEDIT_LIBS" = "x"],[ + AC_MSG_ERROR([libedit support is mandatory]) + ]) + ]) + ]) +])