diff options
author | Alex Dupre <ale@FreeBSD.org> | 2004-02-09 18:37:45 +0800 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2004-02-09 18:37:45 +0800 |
commit | f7331a179b408e1e6c598094463df3a093b50d28 (patch) | |
tree | 4b25fda21e713cd5fcba04f1779da0a6f8f36bfc | |
parent | 533376ab7accda470dfd46020ce15bb3b5208926 (diff) | |
download | freebsd-ports-gnome-f7331a179b408e1e6c598094463df3a093b50d28.tar.gz freebsd-ports-gnome-f7331a179b408e1e6c598094463df3a093b50d28.tar.zst freebsd-ports-gnome-f7331a179b408e1e6c598094463df3a093b50d28.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 1b562552d5fe..d67ab2b1c1a2 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 |