diff options
author | foobar <sniper@php.net> | 2002-10-17 04:42:22 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-10-17 04:42:22 +0000 |
commit | fcfa4ea62f32b5e47fc655bdf16967d691f5543b (patch) | |
tree | 62dc74db3ed5cf4dce18f67edcc1a69d968ce66d | |
parent | d1c252b48b2fa30a4bee1558601ccbd49f26a6c5 (diff) | |
download | php-git-fcfa4ea62f32b5e47fc655bdf16967d691f5543b.tar.gz |
Part 1 of fixing the shared build
-rw-r--r-- | ext/zip/zip.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ext/zip/zip.c b/ext/zip/zip.c index 27f72bb224..d37078b13b 100644 --- a/ext/zip/zip.c +++ b/ext/zip/zip.c @@ -18,6 +18,10 @@ /* $Id$ */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include "php.h" #include "php_ini.h" #include "php_zip.h" @@ -56,7 +60,7 @@ function_entry zip_functions[] = { /* {{{ zip_module_entry */ zend_module_entry zip_module_entry = { - STANDARD_MODULE_HEADER, + STANDARD_MODULE_HEADER, "zip", zip_functions, PHP_MINIT(zip), @@ -64,7 +68,7 @@ zend_module_entry zip_module_entry = { NULL, NULL, PHP_MINFO(zip), - NO_VERSION_YET, + NO_VERSION_YET, STANDARD_MODULE_PROPERTIES }; /* }}} */ |