diff options
author | Edin Kadribasic <edink@php.net> | 2002-12-26 13:27:08 +0000 |
---|---|---|
committer | Edin Kadribasic <edink@php.net> | 2002-12-26 13:27:08 +0000 |
commit | 45cb9dc7b1f335ad24aba1bcd699ce0e8cd96dfc (patch) | |
tree | 50f714a75a0280b733001ff2c90d31bbd6815610 /main/internal_functions_win32.c | |
parent | 45f5605f387df47a8cbfc8ea4a63cf5624e3ba83 (diff) | |
download | php-git-45cb9dc7b1f335ad24aba1bcd699ce0e8cd96dfc.tar.gz |
Made ZLIB extension built in on Windows. Fixes #21139.
# Approved by the release master.
# Will merge this patch into HEAD a bit later.
Diffstat (limited to 'main/internal_functions_win32.c')
-rw-r--r-- | main/internal_functions_win32.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c index 1d49999f55..771a1bc127 100644 --- a/main/internal_functions_win32.c +++ b/main/internal_functions_win32.c @@ -90,6 +90,9 @@ #if HAVE_TOKENIZER #include "ext/tokenizer/php_tokenizer.h" #endif +#if HAVE_ZLIB +#include "ext/zlib/php_zlib.h" +#endif /* }}} */ /* {{{ php_builtin_extensions[] @@ -140,6 +143,9 @@ zend_module_entry *php_builtin_extensions[] = { #if HAVE_LIBEXPAT && HAVE_WDDX ,phpext_wddx_ptr #endif +#if HAVE_ZLIB + ,phpext_zlib_ptr +#endif }; /* }}} */ |