diff options
| author | Rob Richards <rrichards@php.net> | 2006-12-06 13:18:36 +0000 |
|---|---|---|
| committer | Rob Richards <rrichards@php.net> | 2006-12-06 13:18:36 +0000 |
| commit | cf4c83dd2bfb7e29784766685561fa6bebcc84a0 (patch) | |
| tree | 9f951030601ea3ba6cd251a28745d399fab32b36 /ext | |
| parent | b4d0d872e7dec12f4107b9295da10c96d05e3e0a (diff) | |
| download | php-git-cf4c83dd2bfb7e29784766685561fa6bebcc84a0.tar.gz | |
Fix win32 build
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/openssl/xp_ssl.c | 4 | ||||
| -rw-r--r-- | ext/pdo_sqlite/sqlite/src/date.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/ext/openssl/xp_ssl.c b/ext/openssl/xp_ssl.c index b20cf0aa3e..9380dd51c2 100644 --- a/ext/openssl/xp_ssl.c +++ b/ext/openssl/xp_ssl.c @@ -27,6 +27,10 @@ #include <openssl/x509.h> #include <openssl/err.h> +#ifdef PHP_WIN32 +#include "win32/time.h" +#endif + #ifdef NETWARE #include <sys/select.h> #endif diff --git a/ext/pdo_sqlite/sqlite/src/date.c b/ext/pdo_sqlite/sqlite/src/date.c index b5c3074243..68d17a7013 100644 --- a/ext/pdo_sqlite/sqlite/src/date.c +++ b/ext/pdo_sqlite/sqlite/src/date.c @@ -53,7 +53,9 @@ #include <stdlib.h> #include <assert.h> #include <time.h> +#ifndef PHP_WIN32 #include "main/php_reentrancy.h" +#endif #ifndef SQLITE_OMIT_DATETIME_FUNCS |
