diff options
author | Clement Laforet <clement@FreeBSD.org> | 2005-03-17 21:09:56 +0000 |
---|---|---|
committer | Clement Laforet <clement@FreeBSD.org> | 2005-03-17 21:09:56 +0000 |
commit | 15afae81ac54280bd2676a5fc0ed27f1944d086f (patch) | |
tree | a1b347b18945b99c92b7b619aab59bc9d0fa6b3e /www/apache2 | |
parent | 376096e54330d05e52e548d53a431cb315069f26 (diff) | |
download | ports-15afae81ac54280bd2676a5fc0ed27f1944d086f.tar.gz ports-15afae81ac54280bd2676a5fc0ed27f1944d086f.zip |
- Correct misuse of APXS_PREFIX
Notes
Notes:
svn path=/head/; revision=131528
Diffstat (limited to 'www/apache2')
-rw-r--r-- | www/apache2/Makefile.modules.3rd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/apache2/Makefile.modules.3rd b/www/apache2/Makefile.modules.3rd index cec8b9884052..6305ceffd39c 100644 --- a/www/apache2/Makefile.modules.3rd +++ b/www/apache2/Makefile.modules.3rd @@ -18,14 +18,14 @@ OVERRIDABLE_VARS= SRC_FILE MODULENAME SHORTMODNAME WRKSRC \ PKGNAMESUFFIX -.if exists(${APXS_PREFIX}/include/apache2/http_core.h) +.if exists(${LOCALBASE}/include/apache2/http_core.h) WITH_APACHE2= YES . if defined (WANT_APACHE) . if ${WANT_APACHE} == 13 IGNORE= "This module require apache13 and you have apache2 installed" . endif . endif -.elif exists(${APXS_PREFIX}/include/apache/http_core.h) +.elif exists(${LOCALBASE}/include/apache/http_core.h) WITH_APACHE13= YES . if defined (WANT_APACHE) . if ${WANT_APACHE} == 2 |