diff options
author | Sebastian Bergmann <sebastian@php.net> | 2002-11-16 08:30:31 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2002-11-16 08:30:31 +0000 |
commit | 47388f2121aa89f4f74f4277919cfaca5232c18c (patch) | |
tree | fdf518a2b0966fffb2d1d9fe9154c80d855b774c | |
parent | ce06e7ba77f0f2253550feafcd18ae6ef85ff4fc (diff) | |
download | php-git-47388f2121aa89f4f74f4277919cfaca5232c18c.tar.gz |
Fix Win32 build.
-rw-r--r-- | ext/standard/html.c | 4 |
1 files changed, 4 insertions, 0 deletions
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" |