diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-04-23 16:02:05 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-04-23 16:02:05 +0000 |
commit | a1bbdf831cc3dc679f8eae8252da6c3288101ff6 (patch) | |
tree | d4506c8fe71b08c35bcfeda62589c7f96802c16b | |
parent | b81e20f8e8c9afb02518850a51984a1b967788ab (diff) | |
download | php-git-a1bbdf831cc3dc679f8eae8252da6c3288101ff6.tar.gz |
Fixed bug #37162 (wddx does not build as a shared extension).
#Patch By: jdolecek at NetBSD dot org
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | ext/wddx/wddx.c | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -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 |