From: Andi Gutmans Date: Fri, 7 Apr 2000 10:26:28 +0000 (+0000) Subject: - This slipped in. Enable VIRTUAL_DIR when we're in ZTS. Eventually it X-Git-Tag: php-4.0RC2~452 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f118d947838d580ef0b579bb3bcba4baf2fce006;p=php - This slipped in. Enable VIRTUAL_DIR when we're in ZTS. Eventually it should always be enabled. --- diff --git a/main/php.h b/main/php.h index 8a781c43ac..0bef27dd4f 100644 --- a/main/php.h +++ b/main/php.h @@ -284,7 +284,10 @@ PHPAPI int cfg_get_string(char *varname, char **result); #define PUTS_H(str) php_header_write((str), strlen((str))) #define PUTC_H(c) (php_header_write(&(c), 1), (c)) +#ifdef ZTS #define VIRTUAL_DIR +#endif + /* Virtual current directory support */ #ifdef VIRTUAL_DIR #include "php_virtual_cwd.h"