diff options
| author | Wez Furlong <wez@php.net> | 2004-07-31 17:28:27 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2004-07-31 17:28:27 +0000 |
| commit | 47e7fef08ee55782b29e4c4c54d990f5cb8533e9 (patch) | |
| tree | 9752c30af5d1d77eb08cbf855f49b8cfbed38eac /win32/globals.c | |
| parent | d4ad4ac3703cb2ee9e8b5166981bce4767cdc8cd (diff) | |
| download | php-git-47e7fef08ee55782b29e4c4c54d990f5cb8533e9.tar.gz | |
Allow win32 stuff to build non-zts.
Fix stream crypto func (again? didn't I already commit that?)
Diffstat (limited to 'win32/globals.c')
| -rwxr-xr-x | win32/globals.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/globals.c b/win32/globals.c index f77df9d4ba..c66823955d 100755 --- a/win32/globals.c +++ b/win32/globals.c @@ -24,7 +24,7 @@ #ifdef ZTS PHPAPI int php_win32_core_globals_id; #else -php_win32_core_globals php_win32_core_globals; +php_win32_core_globals the_php_win32_core_globals; #endif void php_win32_core_globals_ctor(void *vg TSRMLS_DC) @@ -39,7 +39,7 @@ PHP_RSHUTDOWN_FUNCTION(win32_core_globals) #ifdef ZTS ts_resource(php_win32_core_globals_id) #else - &php_win32_core_globals + &the_php_win32_core_globals #endif ; |
