From f00d796b7ef290b4fa515ae09afc34f17201528f Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 23 Jul 2013 18:06:51 +0200 Subject: [PATCH] fix missing include --- ext/openssl/openssl.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index c939c01b2b..655980e20c 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -35,6 +35,9 @@ #include "ext/standard/php_fopen_wrappers.h" #include "ext/standard/md5.h" #include "ext/standard/base64.h" +#ifdef PHP_WIN32 +# include "win32/winutil.h" +#endif /* OpenSSL includes */ #include -- 2.50.1