summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2020-05-21 07:41:37 +0000
committerrillig <rillig@pkgsrc.org>2020-05-21 07:41:37 +0000
commit6a383c7a9d436efb43f76e4700fa29b1e13bbbc7 (patch)
tree187bb47174cd10f6f04962e3fee02e2db7075451 /www
parente27dff7d7814e7a450d2063208751cbe1d1538a8 (diff)
downloadpkgsrc-6a383c7a9d436efb43f76e4700fa29b1e13bbbc7.tar.gz
www/ap-auth-kerb: remove unknown configure option
This allows the package to be built with GNU_CONFIGURE_STRICT=yes. Since other Apache modules may still need this option, use an opt-out here.
Diffstat (limited to 'www')
-rw-r--r--www/ap-auth-kerb/Makefile3
-rw-r--r--www/apache24/buildlink3.mk4
2 files changed, 4 insertions, 3 deletions
diff --git a/www/ap-auth-kerb/Makefile b/www/ap-auth-kerb/Makefile
index b74fdbbcf08..874f924dd45 100644
--- a/www/ap-auth-kerb/Makefile
+++ b/www/ap-auth-kerb/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2020/03/20 11:58:33 nia Exp $
+# $NetBSD: Makefile,v 1.17 2020/05/21 07:41:37 rillig Exp $
DISTNAME= mod_auth_kerb-5.4
PKGNAME= ${DISTNAME:S/mod/${APACHE_PKG_PREFIX}/:S/_/-/g}
@@ -13,6 +13,7 @@ LICENSE= modified-bsd
CONFLICTS= ap-auth-kerb-[0-9]*
GNU_CONFIGURE= yes
+GNU_CONFIGURE_APXS2= no
CONFIGURE_ARGS+= --without-krb4
CONFIGURE_ARGS+= --with-apache=${BUILDLINK_PREFIX.apache}
CONFIGURE_ARGS+= APXS=${APXS}
diff --git a/www/apache24/buildlink3.mk b/www/apache24/buildlink3.mk
index 58db22a1f99..b2679a4c1b4 100644
--- a/www/apache24/buildlink3.mk
+++ b/www/apache24/buildlink3.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.13 2020/05/07 05:41:33 rillig Exp $
+# $NetBSD: buildlink3.mk,v 1.14 2020/05/21 07:41:37 rillig Exp $
BUILDLINK_TREE+= apache
@@ -23,7 +23,7 @@ USE_TOOLS+= perl # for "apxs"
CONFIGURE_ENV+= APR_LIBTOOL=${LIBTOOL:Q} # make apxs use the libtool we specify
MAKE_ENV+= APR_LIBTOOL=${LIBTOOL:Q}
APXS?= ${BUILDLINK_PREFIX.apache}/bin/apxs
-.if defined(GNU_CONFIGURE)
+.if defined(GNU_CONFIGURE) && ${GNU_CONFIGURE_APXS2:Uyes} == yes
CONFIGURE_ARGS+= ${CONFIGURE_ARGS.apache:U--with-apxs2=${APXS:Q}}
.endif