diff options
| author | Andi Gutmans <andi@php.net> | 1999-09-05 19:04:40 +0000 |
|---|---|---|
| committer | Andi Gutmans <andi@php.net> | 1999-09-05 19:04:40 +0000 |
| commit | 14d9a59f1cbc9c8f9cf9e4d955549dc8c1fc7334 (patch) | |
| tree | 890afb23001883a0806ce9c380c88f7ca50673fb /ext/session/mod_files.c | |
| parent | 99947a251ed175582243f66bcd014478ae975de6 (diff) | |
| download | php-git-14d9a59f1cbc9c8f9cf9e4d955549dc8c1fc7334.tar.gz | |
- Make dir functions compile in Win32
- Fix too early memory manager initialization (For you Thies)
Diffstat (limited to 'ext/session/mod_files.c')
| -rw-r--r-- | ext/session/mod_files.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/session/mod_files.c b/ext/session/mod_files.c index a12c954e98..ebddd47ab6 100644 --- a/ext/session/mod_files.c +++ b/ext/session/mod_files.c @@ -30,6 +30,12 @@ #include <dirent.h> #endif +#if WIN32||WINNT +#define NEEDRDH 1 +#include "win32/readdir.h" +#include <time.h> +#endif + #include <fcntl.h> #include "php_session.h" |
