]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
rec: check for pubsuffix.cc presence, followup to #15782 16010/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Thu, 21 Aug 2025 13:27:24 +0000 (15:27 +0200)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Thu, 21 Aug 2025 13:27:24 +0000 (15:27 +0200)
Signed-off-by: Otto Moerbeek <otto.moerbeek@open-xchange.com>
pdns/recursordist/m4/pdns_check_curl.m4

index fbc47a6d7ea5bb24f4f35013a1b8ddea1ecf6f19..0ebf5793439ad6b804ac64586d98d9aeb58db22d 100644 (file)
@@ -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
 ])