From 68d2592f527b4d3d870589d93553c692d726ffec Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Mon, 18 Mar 2002 08:29:17 +0000 Subject: [PATCH] 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. --- ext/standard/basic_functions.c | 2 +- main/php.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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" -- 2.50.1