diff options
author | Olli Hauer <ohauer@FreeBSD.org> | 2011-03-30 12:59:29 +0000 |
---|---|---|
committer | Olli Hauer <ohauer@FreeBSD.org> | 2011-03-30 12:59:29 +0000 |
commit | 846fe65ac0db605b91f64994e1615380335b926e (patch) | |
tree | b44312e88189c7bfbc2022ded8b6e1af15c09c32 | |
parent | b4821b237b13e6dd53c504e4c3e2a8cf95bf14a4 (diff) |
Notes
-rw-r--r-- | www/mod_uid/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/www/mod_uid/Makefile b/www/mod_uid/Makefile index dfb74d224cbd..d2ff992365f5 100644 --- a/www/mod_uid/Makefile +++ b/www/mod_uid/Makefile @@ -19,15 +19,18 @@ USE_APACHE= 1.3+ PORTDOCS= README.html -.if !defined(APACHE_PORT) || ${APACHE_PORT} == "www/apache13" +AP_FAST_BUILD= yes +AP_GENPLIST= yes + +.include <bsd.port.pre.mk> + +.if !defined(APACHE_PORT) || ${APACHE_PORT} == "www/apache13" || ${APACHE_VERSION} == "13" MODULENAME= mod_uid .else +IGNORE= does not build with latest apache20/22 MODULENAME= mod_uid2 .endif -AP_FAST_BUILD= yes -AP_GENPLIST= yes - post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} @@ -36,4 +39,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |