diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2011-09-13 14:35:12 +0000 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2011-09-13 14:35:12 +0000 |
commit | e9ebd1c6898cac49c2c1f5b67b70b4de59d3a7f3 (patch) | |
tree | a9c5abc38bee83bb1a145ec398b5f607b3066738 /main/php_globals.h | |
parent | 43da6d64a979d8235f3fdd42c739d82ca3548392 (diff) | |
download | php-git-e9ebd1c6898cac49c2c1f5b67b70b4de59d3a7f3.tar.gz |
Fix build on Windows
Diffstat (limited to 'main/php_globals.h')
-rw-r--r-- | main/php_globals.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/main/php_globals.h b/main/php_globals.h index bf6674d54b..6e5611ec5c 100644 --- a/main/php_globals.h +++ b/main/php_globals.h @@ -156,6 +156,10 @@ struct _php_core_globals { char *mail_log; zend_bool in_error_log; + +#ifdef PHP_WIN32 + zend_bool windows_show_crt_warning; +#endif }; |