diff options
author | Clement Laforet <clement@FreeBSD.org> | 2005-01-26 14:06:35 +0000 |
---|---|---|
committer | Clement Laforet <clement@FreeBSD.org> | 2005-01-26 14:06:35 +0000 |
commit | 4e5a21d57ac74a76b6fbb75f36103f31b0730aa7 (patch) | |
tree | a75c77a009d9c8c7f6ef74f2eea5480541d35579 /www/apache2 | |
parent | Improve handling of pkgconfig files (diff) |
- Fix non DSO apache detection
Noticed by: Xavier Beaudouin <kiwi@oav.net>
Notes
Notes:
svn path=/head/; revision=127420
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 ef076d6b4fee..cec8b9884052 100644 --- a/www/apache2/Makefile.modules.3rd +++ b/www/apache2/Makefile.modules.3rd @@ -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} |