diff options
| author | Sascha Schumann <sas@php.net> | 2000-08-06 17:42:54 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 2000-08-06 17:42:54 +0000 |
| commit | 23ebf6e91638d214a82b49ad9973f0101f552908 (patch) | |
| tree | 9b29551f554ca409e71836f250bba5fff40156ea | |
| parent | 57c54a093bcc080b94675d28e72e5b523955d432 (diff) | |
| download | php-git-23ebf6e91638d214a82b49ad9973f0101f552908.tar.gz | |
Include <utime.h> in php_virtual_cwd.h.
| -rw-r--r-- | configure.in | 1 | ||||
| -rw-r--r-- | main/php_virtual_cwd.h | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in index e948a70471..07453b4bc5 100644 --- a/configure.in +++ b/configure.in @@ -293,6 +293,7 @@ sys/varargs.h \ sys/wait.h \ unistd.h \ unix.h \ +utime.h \ ) dnl Checks for typedefs, structures, and compiler characteristics. diff --git a/main/php_virtual_cwd.h b/main/php_virtual_cwd.h index 26ceffc78c..fb1f23beec 100644 --- a/main/php_virtual_cwd.h +++ b/main/php_virtual_cwd.h @@ -28,6 +28,10 @@ #include <sys/types.h> #include <sys/stat.h> +#ifdef HAVE_UTIME_H +#include <utime.h> +#endif + #ifndef ZEND_WIN32 #include <unistd.h> #endif |
