MFH: Fix redef warnings

Kill warning about php_localtime_r not being defined
This commit is contained in:
Kalle Sommer Nielsen 2009-04-06 09:14:54 +00:00
parent d038c5f0db
commit 49e4959a6d
2 changed files with 2 additions and 2 deletions

View file

@ -53,9 +53,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <assert.h> #include <assert.h>
#include <time.h> #include <time.h>
#ifndef PHP_WIN32
#include "main/php_reentrancy.h" #include "main/php_reentrancy.h"
#endif
#ifndef SQLITE_OMIT_DATETIME_FUNCS #ifndef SQLITE_OMIT_DATETIME_FUNCS

View file

@ -4,6 +4,8 @@
*/ */
/* Define the minimum supported version */ /* Define the minimum supported version */
#undef _WIN32_WINNT
#undef NTDDI_VERSION
#define _WIN32_WINNT 0x500 #define _WIN32_WINNT 0x500
#define NTDDI_VERSION _WIN32_WIN2K #define NTDDI_VERSION _WIN32_WIN2K