From a7ffa09e18137de43c91ac5f2120c170679baeae Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Sat, 11 Dec 2010 22:18:10 +0000 Subject: - add PHP_INSTALL_HEADERS to all parts (core&exts) exposing headers, generate the install-headers cmd --- main/php.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'main/php.h') diff --git a/main/php.h b/main/php.h index 2db910eb56..ca31fbf9d1 100644 --- a/main/php.h +++ b/main/php.h @@ -147,7 +147,11 @@ END_EXTERN_C() #endif #ifndef HAVE_SOCKLEN_T +# if PHP_WIN32 +typedef int socklen_t; +# else typedef unsigned int socklen_t; +# endif #endif #define CREATE_MUTEX(a, b) -- cgit v1.2.1