From: Sebastian Bergmann Date: Sat, 16 Nov 2002 08:30:31 +0000 (+0000) Subject: Fix Win32 build. X-Git-Tag: RELEASE_1_0b2~197 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=47388f2121aa89f4f74f4277919cfaca5232c18c;p=php Fix Win32 build. --- diff --git a/ext/standard/html.c b/ext/standard/html.c index fd3e0400e0..b2d69cbc46 100644 --- a/ext/standard/html.c +++ b/ext/standard/html.c @@ -21,7 +21,11 @@ /* $Id$ */ #include "php.h" +#if PHP_WIN32 +#include "config.w32.h" +#else #include "php_config.h" +#endif #include "reg.h" #include "html.h" #include "php_string.h"