From f6656f07df824ac4408ae18aedf136cbc335c28a Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 15 Oct 2013 10:48:51 +0000 Subject: [PATCH] fixed version macros in almost all recently active extensions git-svn-id: https://svn.php.net/repository/pecl/pcsc/trunk@331846 c90b9560-bf6c-de11-be94-00142212c4b1 --- pcsc.c | 2 +- php_pcsc.h | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pcsc.c b/pcsc.c index 4c9bb6a..dfc37d2 100644 --- a/pcsc.c +++ b/pcsc.c @@ -68,7 +68,7 @@ zend_module_entry pcsc_module_entry = { NULL, PHP_MINFO(pcsc), #if ZEND_MODULE_API_NO >= 20010901 - "0.0.1", /* Replace with version number for your extension */ + PHP_PCSC_VERSION, #endif STANDARD_MODULE_PROPERTIES }; diff --git a/php_pcsc.h b/php_pcsc.h index 42ba42f..ffabad4 100644 --- a/php_pcsc.h +++ b/php_pcsc.h @@ -4,6 +4,8 @@ extern zend_module_entry pcsc_module_entry; #define phpext_pcsc_ptr &pcsc_module_entry +#define PHP_PCSC_VERSION "0.0.1" + #ifdef PHP_WIN32 #define PHP_PCSC_API __declspec(dllexport) #else