1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

- Correct misuse of APXS_PREFIX

This commit is contained in:
Clement Laforet 2005-03-17 21:09:56 +00:00
parent 376096e543
commit 15afae81ac
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=131528

View File

@ -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