From 8d13007f314b41543aa1af854cbbd33ce7a576e5 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Sun, 23 Apr 2006 16:02:37 +0000 Subject: [PATCH] MFH: Fixed bug #37162 (wddx does not build as a shared extension). --- NEWS | 2 ++ ext/wddx/wddx.c | 4 ++++ 2 files changed, 6 insertions(+) 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" -- 2.50.1