diff options
author | jdolecek <jdolecek@pkgsrc.org> | 2005-10-23 16:59:49 +0000 |
---|---|---|
committer | jdolecek <jdolecek@pkgsrc.org> | 2005-10-23 16:59:49 +0000 |
commit | e277e0613c49ba3e8d26221528639f502438c1cf (patch) | |
tree | 80b59dfd71fb618933f05c35253d86a159079352 /www | |
parent | 3ae0937f0acb519d9c8fb5e7f38e9b860c085252 (diff) | |
download | pkgsrc-e277e0613c49ba3e8d26221528639f502438c1cf.tar.gz |
php regex is also necessary on Linux; pointed out by Ondrej Tuma
in private e-mail
Diffstat (limited to 'www')
-rw-r--r-- | www/php4/Makefile.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/php4/Makefile.php b/www/php4/Makefile.php index e627fd1118d..7ed7307e6df 100644 --- a/www/php4/Makefile.php +++ b/www/php4/Makefile.php @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.php,v 1.28 2005/10/19 18:05:06 tv Exp $ +# $NetBSD: Makefile.php,v 1.29 2005/10/23 16:59:49 jdolecek Exp $ .include "../../www/php4/Makefile.common" @@ -22,7 +22,7 @@ CONFIGURE_ARGS+= --with-exec-dir=${PREFIX}/libexec/php4 .include "../../mk/bsd.prefs.mk" # The Solaris system regex structures miss re_magic used by PHP build -.if ${OPSYS} != "SunOS" +.if (${OPSYS} != "SunOS") && (${OPSYS} != "Linux") CONFIGURE_ARGS+= --with-regex=system .else CONFIGURE_ARGS+= --with-regex=php |