diff options
author | Clement Laforet <clement@FreeBSD.org> | 2004-11-16 21:14:38 +0000 |
---|---|---|
committer | Clement Laforet <clement@FreeBSD.org> | 2004-11-16 21:14:38 +0000 |
commit | c2b2eeaaf8f50711cb763e1d4239e4d179ac6b89 (patch) | |
tree | d04e85b386fe599afd264a77e6034819c4f45b00 /www/mod_dav | |
parent | Remove optimization on sparc64. (diff) |
- Mark mod_dav as IGNORE for if apache2 is installed.
This is a try to reduce redundant traffic on apache@ mailing list ;-)
Notes
Notes:
svn path=/head/; revision=121774
Diffstat (limited to 'www/mod_dav')
-rw-r--r-- | www/mod_dav/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/www/mod_dav/Makefile b/www/mod_dav/Makefile index 343c3ab2184a..01c6d52fd21f 100644 --- a/www/mod_dav/Makefile +++ b/www/mod_dav/Makefile @@ -53,6 +53,11 @@ pre-everything:: @/bin/sleep 5 .endif +.include <bsd.port.pre.mk> +.if exists(${LOCALBASE}/include/apache2/httpd.h) +IGNORE= is designed for apache 1.3. mod_dav for apache2 is built by default +.endif + do-install: BINMODE=755 ${INSTALL_PROGRAM} ${WRKSRC}/libdav.so ${PREFIX}/libexec/apache ${INSTALL_DATA} ${FILESDIR}/apache.conf.mod_dav ${PREFIX}/etc/apache @@ -67,4 +72,4 @@ post-install: > ${PKGMESSAGE} @${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |