From: Wez Furlong Date: Tue, 17 Apr 2001 17:01:33 +0000 (+0000) Subject: Added --enable-php-streams option for experimental file abstraction X-Git-Tag: php-4.0.6RC1~389 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a26be63a0c75a4ba95cbfcbfa98b0420e44d7c2;p=php Added --enable-php-streams option for experimental file abstraction --- diff --git a/configure.in b/configure.in index ca31b0897d..dbeb66d41b 100644 --- a/configure.in +++ b/configure.in @@ -599,6 +599,14 @@ if test "$PHP_PEAR" = "yes"; then PEAR_DIR=pear fi +# temporary until streams are better integrated +PHP_ARG_ENABLE(php-streams,whether to enable php streams, +[ --enable-php-streams Include experimental php streams. + Do not use unless you are testing the code!]) + +if test "$PHP_PHP_STREAMS" = "yes"; then + AC_DEFINE(HAVE_PHP_STREAM, 1, [Whether to use php streams]) +fi divert(5)