diff options
| author | Ben Fuhrmannek | 2014-11-22 16:19:38 +0100 |
|---|---|---|
| committer | Ben Fuhrmannek | 2014-11-22 16:19:38 +0100 |
| commit | 4989cdda4b8ef7b1088ee0f0b29197b74ba378f0 (patch) | |
| tree | e7175022ebcfe6172f440a29aa93d4aa45f9b9de /execute.c | |
| parent | b90ef35f1a9a5b3b5ced336d945ca35c235f2494 (diff) | |
more win32 related fixes
Diffstat (limited to 'execute.c')
| -rw-r--r-- | execute.c | 7 |
1 files changed, 6 insertions, 1 deletions
| @@ -24,7 +24,6 @@ | |||
| 24 | #endif | 24 | #endif |
| 25 | 25 | ||
| 26 | #include <fcntl.h> | 26 | #include <fcntl.h> |
| 27 | #include <fnmatch.h> | ||
| 28 | #include "php.h" | 27 | #include "php.h" |
| 29 | #include "php_ini.h" | 28 | #include "php_ini.h" |
| 30 | #include "zend_hash.h" | 29 | #include "zend_hash.h" |
| @@ -40,9 +39,15 @@ | |||
| 40 | #include "sha256.h" | 39 | #include "sha256.h" |
| 41 | 40 | ||
| 42 | #ifdef PHP_WIN32 | 41 | #ifdef PHP_WIN32 |
| 42 | # ifdef HAVE_FNMATCH | ||
| 43 | # include "win32/fnmatch.h" | ||
| 44 | # endif | ||
| 43 | # include "win32/winutil.h" | 45 | # include "win32/winutil.h" |
| 44 | # include "win32/time.h" | 46 | # include "win32/time.h" |
| 45 | #else | 47 | #else |
| 48 | # ifdef HAVE_FNMATCH | ||
| 49 | # include <fnmatch.h> | ||
| 50 | # endif | ||
| 46 | # include <sys/time.h> | 51 | # include <sys/time.h> |
| 47 | #endif | 52 | #endif |
| 48 | 53 | ||
