File tree 2 files changed +3
-9
lines changed
2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 27
27
extern zend_module_entry xfilter_module_entry ;
28
28
#define phpext_xfilter_ptr &xfilter_module_entry
29
29
30
- #define PHP_XFILTER_VERSION "0. 1.0" /* Replace with version number for your extension */
30
+ #define PHP_XFILTER_VERSION "1.0.0-rc"
31
31
32
32
#define KEYWORD_MAX_LEN 1024
33
33
34
- #ifdef PHP_WIN32
35
- # define PHP_XFILTER_API __declspec(dllexport)
36
- #elif defined(__GNUC__ ) && __GNUC__ >= 4
37
- # define PHP_XFILTER_API __attribute__ ((visibility("default")))
38
- #else
39
- # define PHP_XFILTER_API
40
- #endif
41
-
42
34
#ifdef ZTS
43
35
#include "TSRM.h"
44
36
#endif
Original file line number Diff line number Diff line change @@ -329,6 +329,8 @@ PHP_MINFO_FUNCTION(xfilter)
329
329
{
330
330
php_info_print_table_start ();
331
331
php_info_print_table_header (2 , "xfilter support" , "enabled" );
332
+ php_info_print_table_row (2 , "Version" , PHP_XFILTER_VERSION );
333
+
332
334
php_info_print_table_end ();
333
335
334
336
DISPLAY_INI_ENTRIES ();
You can’t perform that action at this time.
0 commit comments