From: Anatol Belski Date: Mon, 13 Apr 2015 08:51:24 +0000 (+0200) Subject: fix include with vc14 X-Git-Tag: PRE_PHP7_NSAPI_REMOVAL~177^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4923d234690a900d269a19599e4b6f5f4b4779be;p=php fix include with vc14 --- diff --git a/win32/signal.h b/win32/signal.h index df60dfb728..a131e6ef99 100644 --- a/win32/signal.h +++ b/win32/signal.h @@ -1,3 +1,6 @@ +#if _MSC_VER >= 1900 +#include +#else /* ** Change here: if you plan to use your own version of ** the original "#include " produces an infinite reinclusion @@ -11,6 +14,7 @@ ** include file is located. */ #include <../include/signal.h> +#endif #define SIGALRM 13 #define SIGVTALRM 26 /* virtual time alarm */ #define SIGPROF 27 /* profiling time alarm */