From 47388f2121aa89f4f74f4277919cfaca5232c18c Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Sat, 16 Nov 2002 08:30:31 +0000 Subject: [PATCH] Fix Win32 build. --- ext/standard/html.c | 4 ++++ 1 file changed, 4 insertions(+) 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" -- 2.50.1