Browse Source

Part 1 of fixing the shared build

experimental/threaded
foobar 24 years ago
parent
commit
fcfa4ea62f
  1. 8
      ext/zip/zip.c

8
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
};
/* }}} */

Loading…
Cancel
Save