From da1c05925f430766c40ad981ebc90bfdfc9bc9e0 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Thu, 21 Aug 2025 15:27:24 +0200 Subject: [PATCH] rec: check for pubsuffix.cc presence, followup to #15782 Signed-off-by: Otto Moerbeek --- pdns/recursordist/m4/pdns_check_curl.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ]) -- 2.47.2