From: Wez Furlong Date: Sun, 16 Feb 2003 12:46:16 +0000 (+0000) Subject: Fix bcmath build under win32. X-Git-Tag: RELEASE_0_5~980 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce432004bed5c02fb6425f9428c674cb99559982;p=php Fix bcmath build under win32. # These problems occur because winsock2.h MUST be included before # windows.h. --- diff --git a/ext/bcmath/libbcmath/src/config.h b/ext/bcmath/libbcmath/src/config.h index 6516f8f19b..a70ba5e52d 100644 --- a/ext/bcmath/libbcmath/src/config.h +++ b/ext/bcmath/libbcmath/src/config.h @@ -6,6 +6,7 @@ #include "php_config.h" #endif +#include #include #include "zend.h" #include "zend_alloc.h"