From 448f06fc601b98bdeb7fc356bac382dbf59b62ab Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Tue, 2 Apr 2019 07:44:06 +0200 Subject: [PATCH] fix master --- php_json_post.c | 3 +++ php_json_post.h | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/php_json_post.c b/php_json_post.c index 4a0fcd3..d9b7295 100644 --- a/php_json_post.c +++ b/php_json_post.c @@ -136,6 +136,9 @@ PHP_MINIT_FUNCTION(json_post) { NULL, 0, NULL, NULL } }; +#ifndef TSRMLS_CC +# define TSRMLS_CC +#endif sapi_register_post_entries(json_post_entries TSRMLS_CC); ZEND_INIT_MODULE_GLOBALS(json_post, php_json_post_init_globals, NULL); diff --git a/php_json_post.h b/php_json_post.h index 4400f31..1c0f015 100644 --- a/php_json_post.h +++ b/php_json_post.h @@ -16,7 +16,7 @@ extern zend_module_entry json_post_module_entry; #define phpext_json_post_ptr &json_post_module_entry -#define PHP_JSON_POST_VERSION "1.0.1" +#define PHP_JSON_POST_VERSION "1.0.2dev" #ifdef PHP_WIN32 # define PHP_JSON_POST_API __declspec(dllexport) -- 2.30.2