From: Otto Moerbeek Date: Mon, 10 Jan 2022 11:38:36 +0000 (+0100) Subject: libgss is not needed for build (it provides yet another gssapi implementation), but... X-Git-Tag: rec-4.8.0-alpha1~31^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa7fdce6e55441f9517150853c273c1c95ecfea5;p=thirdparty%2Fpdns.git libgss is not needed for build (it provides yet another gssapi implementation), but we use the kerberos provided one. Found out when trying to build for centos7. --- diff --git a/m4/pdns_enable_gss_tsig.m4 b/m4/pdns_enable_gss_tsig.m4 index 9acd756976..d080c5eef3 100644 --- a/m4/pdns_enable_gss_tsig.m4 +++ b/m4/pdns_enable_gss_tsig.m4 @@ -13,7 +13,7 @@ AC_DEFUN([PDNS_ENABLE_GSS_TSIG],[ AM_CONDITIONAL([GSS_TSIG],[test "x$enable_experimental_gss_tsig" != "xno"]) AC_SUBST(GSS_TSIG) AS_IF([test "x$enable_experimental_gss_tsig" != "xno"], - [PKG_CHECK_MODULES([GSS], [krb5 krb5-gssapi gss], + [PKG_CHECK_MODULES([GSS], [krb5 krb5-gssapi], [ AC_DEFINE([ENABLE_GSS_TSIG], [1], [Define to 1 if you want to enable GSS-TSIG support]) GSS_TSIG=yes diff --git a/tasks.py b/tasks.py index 0a2b8e4119..c049a4481d 100644 --- a/tasks.py +++ b/tasks.py @@ -33,7 +33,6 @@ auth_build_deps = [ # FIXME: perhaps we should be stealing these from the deb 'libcdb-dev', 'libcurl4-openssl-dev', 'libgeoip-dev', - 'libgss-dev', 'libkrb5-dev', 'libldap2-dev', 'liblmdb-dev', @@ -95,7 +94,6 @@ auth_test_deps = [ # FIXME: we should be generating some of these from shlibde 'libcdb1', 'libcurl4', 'libgeoip1', - 'libgss3', 'libkrb5-3', 'libldap-2.4-2', 'liblmdb0',