diff options
author | Dirk Froemberg <dirk@FreeBSD.org> | 2001-08-22 20:13:50 +0000 |
---|---|---|
committer | Dirk Froemberg <dirk@FreeBSD.org> | 2001-08-22 20:13:50 +0000 |
commit | 720661d7acdbe7e3ad8f67773fdc90ed8861c9b5 (patch) | |
tree | 3d726c468f604c8fa676bb86690a7ade81a6ede2 /www | |
parent | Our -man package does not understand .PN and .MS. So use .B (bold) until (diff) |
Set IS_INTERACTIVE if port is interactive. 8-)
Submitted by: olgeni
Notes
Notes:
svn path=/head/; revision=46657
Diffstat (limited to 'www')
-rw-r--r-- | www/mod_php3/Makefile | 4 | ||||
-rw-r--r-- | www/mod_php4/Makefile | 4 | ||||
-rw-r--r-- | www/mod_php5/Makefile | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/www/mod_php3/Makefile b/www/mod_php3/Makefile index 51c47bbb9841..3c761ab92a21 100644 --- a/www/mod_php3/Makefile +++ b/www/mod_php3/Makefile @@ -34,6 +34,10 @@ SLAVEDIRS= lang/php3 GNU_CONFIGURE= yes +.if !defined(BATCH) && !defined(PACKAGE_BUILDING) +IS_INTERACTIVE= yes +.endif + .if defined(STANDALONE) CONFIGURE_ARGS= --with-config-file-path=${PREFIX}/etc/php.standalone .else diff --git a/www/mod_php4/Makefile b/www/mod_php4/Makefile index 3c14a523afe0..b1be586e7928 100644 --- a/www/mod_php4/Makefile +++ b/www/mod_php4/Makefile @@ -33,6 +33,10 @@ SLAVEDIRS= lang/php4 USE_LIBTOOL= yes +.if !defined(BATCH) && !defined(PACKAGE_BUILDING) +IS_INTERACTIVE= yes +.endif + .if defined(STANDALONE) CONFIGURE_ARGS= --with-config-file-path=${PREFIX}/etc/php.standalone \ --disable-pear diff --git a/www/mod_php5/Makefile b/www/mod_php5/Makefile index 3c14a523afe0..b1be586e7928 100644 --- a/www/mod_php5/Makefile +++ b/www/mod_php5/Makefile @@ -33,6 +33,10 @@ SLAVEDIRS= lang/php4 USE_LIBTOOL= yes +.if !defined(BATCH) && !defined(PACKAGE_BUILDING) +IS_INTERACTIVE= yes +.endif + .if defined(STANDALONE) CONFIGURE_ARGS= --with-config-file-path=${PREFIX}/etc/php.standalone \ --disable-pear |