diff options
author | jeh <jeh@FreeBSD.org> | 2005-02-11 16:12:47 +0000 |
---|---|---|
committer | jeh <jeh@FreeBSD.org> | 2005-02-11 16:12:47 +0000 |
commit | 4b8947f66eb591bfad441199d4fcc40c78a61455 (patch) | |
tree | 727055e9236d0749cdd3fd633875b0c40e177f0a /www | |
parent | db3dd0e2a02cfcf7f203b10baf92b81a2fdfab15 (diff) | |
download | FreeBSD-ports-4b8947f66eb591bfad441199d4fcc40c78a61455.zip FreeBSD-ports-4b8947f66eb591bfad441199d4fcc40c78a61455.tar.gz |
Ports that previously depended on www/apache2 now show as depending on
www/apache13.
This problem is occuring because of a recent change to www/apache2's
Makefile.modules.3rd file (revision 1.18). This change made the
APACHE_PORT variable overrideable even when WITH_APACHE2 is defined.
Previously, it set the variable with APACHE_PORT=www/apache2.
The APACHE_PORT variable gets defined in <bsd.port.mk> to www/apache13
if it wasn't previously defined.
The affected ports include <bsd.port.pre.mk> before "Makefile.modules.3rd".
Submitted by: Scot Hetzel
Diffstat (limited to 'www')
-rw-r--r-- | www/mod_auth_mysql/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/www/mod_auth_mysql/Makefile b/www/mod_auth_mysql/Makefile index 3b8eb2a..f2e1a63 100644 --- a/www/mod_auth_mysql/Makefile +++ b/www/mod_auth_mysql/Makefile @@ -30,7 +30,6 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS= --with-mysql=${PREFIX} \ --with-apxs=${APXS} -.include <bsd.port.pre.mk> .include "${PORTSDIR}/www/apache2/Makefile.modules.3rd" post-install: @@ -41,4 +40,4 @@ post-install: .endfor .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |