- Please use the -dev tag during the development cycle so that snapshots can easily be distinguished from releases.
NULL, /* Replace with NULL if there's nothing to do at request end */
PHP_MINFO(enchant),
#if ZEND_MODULE_API_NO >= 20010901
- "0.1", /* Replace with version number for your extension */
+ PHP_ENCHANT_VERSION,
#endif
STANDARD_MODULE_PROPERTIES
};
pbroker = enchant_broker_init();
php_info_print_table_start();
php_info_print_table_header(2, "enchant support", "enabled");
- php_info_print_table_row(2, "Version", "@package_version@");
+ php_info_print_table_row(2, "Version", PHP_ENCHANT_VERSION);
php_info_print_table_row(2, "Revision", "$Revision$");
php_info_print_table_end();
<file name="config.m4" role="src"/>
<file name="config.w32" role="src"/>
<file name="CREDITS" role="doc"/>
- <file name="enchant.c" role="src">
- <tasks:replace from="@package_version@" to="version" type="package-info"/>
- </file>
+ <file name="enchant.c" role="src"/>
<file name="php_enchant.h" role="src"/>
<dir name="tests">
<file name="broker_describe.phpt" role="test"/>
extern zend_module_entry enchant_module_entry;
#define phpext_enchant_ptr &enchant_module_entry
+#define PHP_ENCHANT_VERSION "1.0.2-dev"
+
#ifdef PHP_WIN32
#define PHP_ENCHANT_API __declspec(dllexport)
#else
NULL,
PHP_MINFO(fileinfo),
#if ZEND_MODULE_API_NO >= 20010901
- "0.1", /* Replace with version number for your extension */
+ PHP_FILEINFO_VERSION,
#endif
STANDARD_MODULE_PROPERTIES
};
{
php_info_print_table_start();
php_info_print_table_header(2, "fileinfo support", "enabled");
+ php_info_print_table_row(2, "version", PHP_FILEINFO_VERSION);
php_info_print_table_end();
}
/* }}} */
extern zend_module_entry fileinfo_module_entry;
#define phpext_fileinfo_ptr &fileinfo_module_entry
+#define PHP_FILEINFO_VERSION "1.0.5-dev"
+
#ifdef PHP_WIN32
#define PHP_FILEINFO_API __declspec(dllexport)
#else