Index: dns/samba-nsupdate/Makefile =================================================================== --- dns/samba-nsupdate/Makefile +++ dns/samba-nsupdate/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= nsupdate -PORTVERSION= 9.8.6 -PORTREVISION= 2 +PORTVERSION= 9.13.3 CATEGORIES= dns net ipv6 MASTER_SITES= ISC/bind9/${ISCVERSION} PKGNAMEPREFIX= samba- @@ -14,7 +13,7 @@ LICENSE= ISCL # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.8.6 +ISCVERSION= 9.13.3 MAKE_JOBS_UNSAFE= yes @@ -73,6 +72,7 @@ @${REINPLACE_CMD} \ -e 's|^SUBDIRS.*|SUBDIRS = ${PORTNAME}|' \ -e 's|^.*check confgen ||' \ + -e '/tests$$/d' \ ${WRKSRC}/bin/Makefile.in @${REINPLACE_CMD} \ -e 's|${PORTNAME}|${PKGBASE}|g' \ Index: dns/samba-nsupdate/distinfo =================================================================== --- dns/samba-nsupdate/distinfo +++ dns/samba-nsupdate/distinfo @@ -1,2 +1,3 @@ -SHA256 (bind-9.8.6.tar.gz) = 01cc3a0105b47833b99e61b69acd824be4eeefd6557fffa26eced8e03f1249cd -SIZE (bind-9.8.6.tar.gz) = 7275769 +TIMESTAMP = 1541218899 +SHA256 (bind-9.13.3.tar.gz) = 76674cf2a3e61766aed5c7fd1ee6ed3da133a9e331b35b24f40efdf1bbac5b44 +SIZE (bind-9.13.3.tar.gz) = 7805551 Index: dns/samba-nsupdate/files/patch-configure.in =================================================================== --- dns/samba-nsupdate/files/patch-configure.in +++ dns/samba-nsupdate/files/patch-configure.in @@ -1,21 +1,21 @@ ---- configure.in.orig 2013-09-05 05:19:53.000000000 +0000 -+++ configure.in 2013-10-18 14:30:21.711727438 +0000 -@@ -1013,7 +1013,8 @@ - "-lgssapi" \ - "-lgssapi -lkrb5 -ldes -lcrypt -lasn1 -lroken -lcom_err" \ - "-lgssapi -lkrb5 -lcrypto -lcrypt -lasn1 -lroken -lcom_err" \ +--- configure.in.orig 2018-09-05 17:15:26.000000000 -0700 ++++ configure.in 2018-11-02 21:25:17.714365000 -0700 +@@ -1126,7 +1126,7 @@ + saved_libs="$LIBS" + LIBS=$gssapi_libs + AC_MSG_CHECKING([krb5-config linking as $LIBS]) +- AC_TRY_LINK( , [gss_acquire_cred();krb5_init_context()], ++ AC_TRY_LINK( , [gss_acquire_cred();krb5_init_context();gsskrb5_register_acceptor_identity("krb5");], + gssapi_linked=yes, gssapi_linked=no) + case $gssapi_linked in + yes) AC_MSG_RESULT([krb5-config: linked]);; +@@ -1263,7 +1263,8 @@ + "-lgssapi -lkrb5 -lcrypt -lasn1 -lroken -lcom_err" \ + "-lgssapi -lkrb5 -lgssapi_krb5 -lcrypt -lasn1 -lroken -lcom_err" \ + "-lgssapi -lkrb5 -lhx509 -lcrypt -lasn1 -lroken -lcom_err" \ - "-lgss -lkrb5" + "-lgss -lkrb5" \ + "-lgssapi_krb5 -lgssapi -lheimntlm -lkrb5 -lhx509 -lcom_err -lcrypto -lasn1 -lroken -lcrypt" do # Note that this does not include $saved_libs, because # on FreeBSD machines this configure script has added -@@ -1027,7 +1028,7 @@ - LIBS="-L$use_gssapi/lib $TRY_LIBS" - fi - AC_MSG_CHECKING(linking as $TRY_LIBS) -- AC_TRY_LINK( , [gss_acquire_cred();krb5_init_context()], -+ AC_TRY_LINK( , [gss_acquire_cred();krb5_init_context();gsskrb5_register_acceptor_identity("krb5");], - gssapi_linked=yes, gssapi_linked=no) - case $gssapi_linked in - yes) AC_MSG_RESULT(yes); break ;;