cleanup mod version macros and mod defs, round x

This commit is contained in:
Anatol Belski 2015-03-23 21:30:22 +01:00
parent 19360f386e
commit 663074b6b1
51 changed files with 99 additions and 48 deletions

View file

@ -73,8 +73,6 @@
#include "php_xmlrpc.h"
#include "xmlrpc.h"
#define PHP_EXT_VERSION "0.51"
static int le_xmlrpc_server;
/* {{{ arginfo */
@ -170,7 +168,7 @@ zend_module_entry xmlrpc_module_entry = {
NULL,
NULL,
PHP_MINFO(xmlrpc),
PHP_EXT_VERSION,
PHP_XMLRPC_VERSION,
STANDARD_MODULE_PROPERTIES
};
@ -300,7 +298,7 @@ PHP_MINFO_FUNCTION(xmlrpc)
{
php_info_print_table_start();
php_info_print_table_row(2, "core library version", XMLRPC_GetVersionString());
php_info_print_table_row(2, "php extension version", PHP_EXT_VERSION);
php_info_print_table_row(2, "php extension version", PHP_XMLRPC_VERSION);
php_info_print_table_row(2, "author", "Dan Libby");
php_info_print_table_row(2, "homepage", "http://xmlrpc-epi.sourceforge.net");
php_info_print_table_row(2, "open sourced by", "Epinions.com");