1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

- Fix non DSO apache detection

Noticed by:	Xavier Beaudouin <kiwi@oav.net>
This commit is contained in:
Clement Laforet 2005-01-26 14:06:35 +00:00
parent ffe8b04c76
commit 4e5a21d57a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=127420
2 changed files with 4 additions and 4 deletions

View File

@ -51,8 +51,8 @@ IGNORE= "Unknown apache version"
.if !defined(PORT_IS_SERVER)
.if exists(${APXS})
APXS_PREFIX!= ${APXS} -q prefix 2> /dev/null || true
. if defined(APXS_PREFIX)
APXS_PREFIX!= ${APXS} -q prefix 2> /dev/null || echo NULL
. if ${APXS_PREFIX} == NULL
IGNORE= : Your apache does not support DSO modules
. endif
. if defined(AP_GENPLIST) && ${APXS_PREFIX} != ${PREFIX}

View File

@ -51,8 +51,8 @@ IGNORE= "Unknown apache version"
.if !defined(PORT_IS_SERVER)
.if exists(${APXS})
APXS_PREFIX!= ${APXS} -q prefix 2> /dev/null || true
. if defined(APXS_PREFIX)
APXS_PREFIX!= ${APXS} -q prefix 2> /dev/null || echo NULL
. if ${APXS_PREFIX} == NULL
IGNORE= : Your apache does not support DSO modules
. endif
. if defined(AP_GENPLIST) && ${APXS_PREFIX} != ${PREFIX}