]> granicus.if.org Git - php/commitdiff
more magic number fixes
authorAntony Dovgal <tony2001@php.net>
Wed, 3 Jan 2007 20:49:27 +0000 (20:49 +0000)
committerAntony Dovgal <tony2001@php.net>
Wed, 3 Jan 2007 20:49:27 +0000 (20:49 +0000)
Zend/zend_extensions.h
Zend/zend_modules.h
ext/exif/exif.c
ext/mime_magic/mime_magic.c
ext/sqlite/sqlite.c

index 4bfb358f1301ce5d2edea123a7bfc6771a7aa13a..114d8521975311e80e81464675987c3b5e2a0702 100644 (file)
@@ -27,7 +27,7 @@
 /* The first number is the engine version and the rest is the date.
  * This way engine 2/3 API no. is always greater than engine 1 API no..
  */
-#define ZEND_EXTENSION_API_NO  320070519
+#define ZEND_EXTENSION_API_NO  320060519
 
 typedef struct _zend_extension_version_info {
        int zend_extension_api_no;
index a6b6c8647d4144c63d8ab7f0c292cc557766a543..971f202bb392d86a5b220b6b31478b009dd2d3ff 100644 (file)
@@ -39,7 +39,7 @@ extern struct _zend_arg_info fourth_arg_force_ref[5];
 extern struct _zend_arg_info fifth_arg_force_ref[6];
 extern struct _zend_arg_info all_args_by_ref[1];
 
-#define ZEND_MODULE_API_NO 20070613
+#define ZEND_MODULE_API_NO 20060613
 #ifdef ZTS
 #define USING_ZTS 1
 #else
index b5eb39eec8248c1ec14376c21199a5bd8070631f..2048c223977aef4422a028c5556ffb8fac188111 100644 (file)
@@ -253,7 +253,7 @@ zend_module_entry exif_module_entry = {
 #if ZEND_MODULE_API_NO >= 20010901
        EXIF_VERSION,
 #endif
-#if ZEND_MODULE_API_NO >= 20070613
+#if ZEND_MODULE_API_NO >= 20060613
        PHP_MODULE_GLOBALS(exif),
        PHP_GINIT(exif),
        NULL,
index 28397da1cc5c95f74c50cfc60aeb6e27d39f9368..c1869230314c47aba6e9cc23eb693235e1af4e88 100644 (file)
@@ -240,7 +240,7 @@ zend_module_entry mime_magic_module_entry = {
 #if ZEND_MODULE_API_NO >= 20010901
        "0.1", 
 #endif
-#if ZEND_MODULE_API_NO >= 20070613
+#if ZEND_MODULE_API_NO >= 20060613
        PHP_MODULE_GLOBALS(mime_magic),
        PHP_GINIT(mime_magic),
        NULL,
index d16d2486697d532f6c317a54ee833d8d0eced1d9..f0a54c3c1c7274bb3552c3fba137313505454ccc 100644 (file)
@@ -347,7 +347,7 @@ zend_module_entry sqlite_module_entry = {
 #if ZEND_MODULE_API_NO >= 20010901
        PHP_SQLITE_MODULE_VERSION,
 #endif
-#if ZEND_MODULE_API_NO >= 20070613
+#if ZEND_MODULE_API_NO >= 20060613
        PHP_MODULE_GLOBALS(sqlite),
        PHP_GINIT(sqlite),
        NULL,