File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -139,8 +139,14 @@ ZEND_TSRMLS_CACHE_EXTERN()
139
139
#define BLOB_INPUT 1
140
140
#define BLOB_OUTPUT 2
141
141
142
+
142
143
#ifdef PHP_WIN32
143
- #define LL_MASK "I64"
144
+ // Case switch, because of troubles on Windows and PHP 8.0
145
+ #if PHP_VERSION_ID < 80000
146
+ #define LL_MASK "I64"
147
+ #else
148
+ #define LL_MASK "ll"
149
+ #endif
144
150
#define LL_LIT (lit ) lit ## I64
145
151
typedef void (__stdcall * info_func_t )(char * );
146
152
#else
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ extern zend_module_entry ibase_module_entry;
25
25
#define phpext_interbase_ptr &ibase_module_entry
26
26
27
27
#include "php_version.h"
28
- #define PHP_INTERBASE_VERSION "1.1.1 "
28
+ #define PHP_INTERBASE_VERSION "1.1.2 "
29
29
30
30
PHP_MINIT_FUNCTION (ibase );
31
31
PHP_RINIT_FUNCTION (ibase );
You can’t perform that action at this time.
0 commit comments