From fcfa4ea62f32b5e47fc655bdf16967d691f5543b Mon Sep 17 00:00:00 2001 From: foobar Date: Thu, 17 Oct 2002 04:42:22 +0000 Subject: Part 1 of fixing the shared build --- ext/zip/zip.c | 8 ++++++-- 1 file 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 }; /* }}} */ -- cgit v1.2.1