diff options
author | ale <ale@FreeBSD.org> | 2004-02-09 18:37:45 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2004-02-09 18:37:45 +0800 |
commit | 94a1a710b6d8d46c50ca0bca27b5bccd093ac034 (patch) | |
tree | 580b29cb69e44a73c1c969136b4dc9b44f064a86 | |
parent | 0deb776877ac661de12aa763c2fbd222232305e7 (diff) | |
download | freebsd-ports-graphics-94a1a710b6d8d46c50ca0bca27b5bccd093ac034.tar.gz freebsd-ports-graphics-94a1a710b6d8d46c50ca0bca27b5bccd093ac034.tar.zst freebsd-ports-graphics-94a1a710b6d8d46c50ca0bca27b5bccd093ac034.zip |
Fix apache2 auto-detection, since apr is now conditional.
Submitted by: kuriyama
Approved by: nork (mentor/implicitly)
-rw-r--r-- | Mk/bsd.php.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.php.mk b/Mk/bsd.php.mk index 1b562552d5f..d67ab2b1c1a 100644 --- a/Mk/bsd.php.mk +++ b/Mk/bsd.php.mk @@ -33,7 +33,7 @@ PHP_Include_MAINTAINER= ale@FreeBSD.org PHP_VER?= 4 .if !defined(PHP_EXT_DIR) PHP_EXT_DIR= 20020429 -.if exists(${LOCALBASE}/include/apache2/apr.h) +.if exists(${LOCALBASE}/include/apache2/httpd.h) APACHE_MPM!= ${APXS} -q MPM_NAME .if ${APACHE_MPM} == "worker" PHP_EXT_DIR:= ${PHP_EXT_DIR}-zts |