]> granicus.if.org Git - php/commitdiff
Remove this VC8 check as our minimum target version of VC is higher
authorKalle Sommer Nielsen <kalle@php.net>
Sun, 29 Mar 2015 04:50:09 +0000 (06:50 +0200)
committerKalle Sommer Nielsen <kalle@php.net>
Sun, 29 Mar 2015 04:50:09 +0000 (06:50 +0200)
ext/mysqlnd/mysqlnd_debug.h

index 3548ba325712e3e7f7a6b723f2977c74fd6abb52..1e6d0c17a6b03bb689a6552e5e93c8d0cf63cb83 100644 (file)
@@ -71,7 +71,7 @@ void mysqlnd_debug_trace_plugin_register(void);
 PHPAPI MYSQLND_DEBUG * mysqlnd_debug_init(const char * skip_functions[]);
 
 
-#if defined(__GNUC__) || (defined(_MSC_VER) && (_MSC_VER >= 1400))
+#if defined(__GNUC__) || defined(PHP_WIN32)
 #ifdef PHP_WIN32
 #include "win32/time.h"
 #elif defined(NETWARE)
@@ -157,7 +157,7 @@ PHPAPI MYSQLND_DEBUG * mysqlnd_debug_init(const char * skip_functions[]);
 
 
 
-#else  /* defined(__GNUC__) || (defined(_MSC_VER) && (_MSC_VER >= 1400)) */
+#else  /* defined(__GNUC__) || defined(PHP_WIN32) */
 static inline void DBG_INF_EX(MYSQLND_DEBUG * dbg_obj, const char * const msg) {}
 static inline void DBG_ERR_EX(MYSQLND_DEBUG * dbg_obj, const char * const msg) {}
 static inline void DBG_INF_FMT_EX(MYSQLND_DEBUG * dbg_obj, ...) {}