From 87c3363fa9f4cacd0034896d2381cbb78faa0c6d Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sun, 1 Aug 2004 00:35:11 +0000 Subject: [PATCH] MFH usleep fix, and BFN. --- NEWS | 4 +++- win32/build/config.w32 | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index eca3dcd6a0..c8282961b7 100644 --- a/NEWS +++ b/NEWS @@ -2,7 +2,9 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2004, PHP 5.0.1 - Improved and moved ActiveScript SAPI to PECL. (Wez) -- Fixed but #29437 (Possible crash inside array_walk_recursive()). (Ilia) +- Fixed bug #29474 (win32: usleep() doesn't work). (Wez) +- Fixed bug #29449 (win32: feof() hangs on empty tcp stream). (Wez) +- Fixed bug #29437 (Possible crash inside array_walk_recursive()). (Ilia) - Fixed bug #29431 (crash when parsing invalid address; invalid address returned by stream_socket_recvfrom(), stream_socket_getname()). (Wez) - Fixed bug #29409 (Segfault in PHP functions called from XSLT). (Rob) diff --git a/win32/build/config.w32 b/win32/build/config.w32 index 2fc451aa9e..9e70a278cb 100644 --- a/win32/build/config.w32 +++ b/win32/build/config.w32 @@ -218,6 +218,8 @@ ARG_ENABLE("memory-limit", "Enable memory limit checking code", "no"); AC_DEFINE('MEMORY_LIMIT', PHP_MEMORY_LIMIT == "yes" ? 1 : 0); +AC_DEFINE('HAVE_USLEEP', 1); + /* For snapshot builders, where can we find the additional * files that make up the snapshot template? */ ARG_WITH("snapshot-template", "Path to snapshot builder template dir", "no"); -- 2.50.1