From: Ilia Alshanetsky Date: Sun, 23 Apr 2006 16:02:37 +0000 (+0000) Subject: MFH: Fixed bug #37162 (wddx does not build as a shared extension). X-Git-Tag: php-4.4.3RC1~21 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d13007f314b41543aa1af854cbbd33ce7a576e5;p=php MFH: Fixed bug #37162 (wddx does not build as a shared extension). --- diff --git a/NEWS b/NEWS index eb0a2f62a5..b0b5c571cf 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,8 @@ PHP 4 NEWS - Updated PCRE to version 6.6. (Andrei) - Added overflow checks to wordwrap() function. (Ilia) - Added a check for special characters in the session name. (Ilia) +- Fixed bug #37162 (wddx does not build as a shared extension). + (jdolecek at NetBSD dot org, Ilia) - Fixed bug #37046 (foreach breaks static scope). (Dmitry) - Fixed bug #37045 (Fixed check for special chars for http redirects). (Ilia) - Fixed bug #36857 (Added support for partial content fetching to the HTTP diff --git a/ext/wddx/wddx.c b/ext/wddx/wddx.c index 8be6d5fc91..0b59a0afbf 100644 --- a/ext/wddx/wddx.c +++ b/ext/wddx/wddx.c @@ -18,6 +18,10 @@ /* $Id$ */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include "php.h" #include "php_wddx.h"