]> granicus.if.org Git - php/commitdiff
Part 1 of fixing the shared build
authorfoobar <sniper@php.net>
Thu, 17 Oct 2002 04:42:22 +0000 (04:42 +0000)
committerfoobar <sniper@php.net>
Thu, 17 Oct 2002 04:42:22 +0000 (04:42 +0000)
ext/zip/zip.c

index 27f72bb2247e466e030cdeacd3e13655a1b4ec85..d37078b13b051923b5567dec75c57ab083d53818 100644 (file)
 
 /* $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
 };
 /* }}} */