From: Sebastian Bergmann Date: Wed, 17 Apr 2002 17:25:18 +0000 (+0000) Subject: Patch by Marcus Börger. X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~611 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c2dd85ce15cc936e6cadddc79c1da5c19c24fcbd;p=php Patch by Marcus Börger. --- 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;