diff options
author | Sebastian Bergmann <sebastian@php.net> | 2002-04-17 17:25:18 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2002-04-17 17:25:18 +0000 |
commit | c2dd85ce15cc936e6cadddc79c1da5c19c24fcbd (patch) | |
tree | 8cce6518c8a6a68e074a3ba4f624d2606f6436ed /main/php_ini.c | |
parent | 948106fd20797df84c570347ff0c166e27cf6339 (diff) | |
download | php-git-c2dd85ce15cc936e6cadddc79c1da5c19c24fcbd.tar.gz |
Patch by Marcus Börger.
Diffstat (limited to 'main/php_ini.c')
-rw-r--r-- | main/php_ini.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/main/php_ini.c b/main/php_ini.c index 8b449f7559..8e77345607 100644 --- a/main/php_ini.c +++ b/main/php_ini.c @@ -31,6 +31,10 @@ #include "SAPI.h" #include "php_main.h" +#ifndef S_ISDIR +#define S_ISDIR( m ) (((m) & S_IFMT) == S_IFDIR) +#endif + typedef struct _php_extension_lists { zend_llist engine; zend_llist functions; |