diff options
author | Daniel Beulshausen <dbeu@php.net> | 2001-09-17 12:22:35 +0000 |
---|---|---|
committer | Daniel Beulshausen <dbeu@php.net> | 2001-09-17 12:22:35 +0000 |
commit | 3a386f8684f9845511421f98b5ea1d1932d61b4b (patch) | |
tree | 57b33d4e0ad2299522fdd669e83dd9f2b1f3be05 /sapi | |
parent | 30042dc883ffbaa23cc98547c940e1829eff2e5f (diff) | |
download | php-git-3a386f8684f9845511421f98b5ea1d1932d61b4b.tar.gz |
fix macro + nuke warning
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/apache/mod_php4.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sapi/apache/mod_php4.h b/sapi/apache/mod_php4.h index cb9ce7701c..fa4adaedf9 100644 --- a/sapi/apache/mod_php4.h +++ b/sapi/apache/mod_php4.h @@ -38,17 +38,12 @@ extern zend_module_entry apache_module_entry; #ifdef ZTS extern int php_apache_info_id; -#define AP(v) TSRMG(alloc_globals_id, php_apache_info_struct *, v) +#define AP(v) TSRMG(php_apache_info_id, php_apache_info_struct *, v) #else extern php_apache_info_struct php_apache_info; #define AP(v) (php_apache_info.v) #endif - -#ifdef WIN32 -#define S_IXUSR _S_IEXEC -#endif - #endif /* MOD_PHP4_H */ /* |