From: Otto Moerbeek Date: Thu, 21 Aug 2025 13:27:24 +0000 (+0200) Subject: rec: check for pubsuffix.cc presence, followup to #15782 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F16010%2Fhead;p=thirdparty%2Fpdns.git rec: check for pubsuffix.cc presence, followup to #15782 Signed-off-by: Otto Moerbeek --- diff --git a/pdns/recursordist/m4/pdns_check_curl.m4 b/pdns/recursordist/m4/pdns_check_curl.m4 index fbc47a6d7e..0ebf579343 100644 --- a/pdns/recursordist/m4/pdns_check_curl.m4 +++ b/pdns/recursordist/m4/pdns_check_curl.m4 @@ -1,8 +1,8 @@ AC_DEFUN([PDNS_CHECK_CURL], [ AC_CHECK_PROG([CURL], [curl], [curl]) if test "x$CURL" = "x"; then - if test ! -f "${srcdir}/effective_tld_names.dat"; then - AC_MSG_ERROR([curl is missing and you don't have ${srcdir}//effective_tld_names.dat. Install curl or download sources from www.powerdns.com]) + if test ! -f "${srcdir}/pubsuffix.cc"; then + AC_MSG_ERROR([curl is missing and you don't have ${srcdir}//pubsuffix.cc. Install curl or download sources from www.powerdns.com]) fi fi ])