From a1bbdf831cc3dc679f8eae8252da6c3288101ff6 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Sun, 23 Apr 2006 16:02:05 +0000 Subject: [PATCH] Fixed bug #37162 (wddx does not build as a shared extension). #Patch By: jdolecek at NetBSD dot org --- NEWS | 2 ++ ext/wddx/wddx.c | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/NEWS b/NEWS index ccfd15f269..e17c51372d 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,8 @@ PHP NEWS - Fixed reading stream filters never notified about EOF. (Mike) - Fixed bug #37167 (PDO segfaults when throwing exception from the fetch handler). (Tony) +- Fixed bug #37162 (wddx does not build as a shared extension). + (jdolecek at NetBSD dot org, Ilia) - Fixed bug #37158 (fread behaviour changes after calling stream_wrapper_register). (Wez) - Fixed bug #37138 (__autoload tries to load callback'ed self and parent). diff --git a/ext/wddx/wddx.c b/ext/wddx/wddx.c index fb377f4703..b2833b2f11 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" #if HAVE_WDDX -- 2.50.1