From: Sascha Schumann Date: Mon, 18 Mar 2002 08:29:17 +0000 (+0000) Subject: Rename HAVE_PHP_STREAM to PHP_HAVE_STREAMS, because X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~1279 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=68d2592f527b4d3d870589d93553c692d726ffec;p=php Rename HAVE_PHP_STREAM to PHP_HAVE_STREAMS, because 1.) a PHP-specific symbol should be in the php namespace, and 2.) there are multiple streams and the old configure parameter was plural, too. --- diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index dee722ab59..2e98ffe7a6 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -623,7 +623,7 @@ function_entry basic_functions[] = { PHP_FE(set_socket_blocking, NULL) PHP_FE(socket_set_blocking, NULL) -#if HAVE_PHP_STREAM +#if PHP_HAVE_STREAMS PHP_FE(fgetwrapperdata, NULL) #endif diff --git a/main/php.h b/main/php.h index e086ee4ed5..c1d7949550 100644 --- a/main/php.h +++ b/main/php.h @@ -27,7 +27,7 @@ #endif #define PHP_API_VERSION 20010901 -#define HAVE_PHP_STREAM 1 +#define PHP_HAVE_STREAMS #define YYDEBUG 0 #include "php_version.h"