diff options
author | adrianp <adrianp@pkgsrc.org> | 2007-05-18 10:23:16 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2007-05-18 10:23:16 +0000 |
commit | e54f59994fd9e921b0fc1fa44868f12dca45293e (patch) | |
tree | 4f93467aa9f678b9bb9b08828e738ca44267eae7 /security | |
parent | da2ced0ef387289eb2e084bcd9a45f8fb199e1c8 (diff) | |
download | pkgsrc-e54f59994fd9e921b0fc1fa44868f12dca45293e.tar.gz |
Add PKG_APACHE_ACCEPTED=apache13 apache2 as this package is not
supported with apache 2.2.x
Diffstat (limited to 'security')
-rw-r--r-- | security/ap-modsecurity/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/security/ap-modsecurity/Makefile b/security/ap-modsecurity/Makefile index f65e4fa8b36..da7d390beaf 100644 --- a/security/ap-modsecurity/Makefile +++ b/security/ap-modsecurity/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2006/10/21 12:36:07 adrianp Exp $ +# $NetBSD: Makefile,v 1.5 2007/05/18 10:23:16 adrianp Exp $ # DISTNAME= modsecurity-apache_1.9.4 @@ -12,13 +12,18 @@ COMMENT= Intrusion detection and prevention engine for web applications .include "../../mk/apache.mk" +PKG_APACHE_ACCEPTED= apache13 apache2 + .if ${PKG_APACHE} == "apache2" APACHE_DIR= apache2 MOD_EXTN= la -.else +.endif + +.if ${PKG_APACHE} == "apache13" APACHE_DIR= apache1 MOD_EXTN= so .endif + PTHREAD_OPTS+= require .include "../../mk/pthread.buildlink3.mk" |