File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 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()
139139#define BLOB_INPUT 1
140140#define BLOB_OUTPUT 2
141141
142+
142143#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
144150#define LL_LIT (lit ) lit ## I64
145151typedef void (__stdcall * info_func_t )(char * );
146152#else
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ extern zend_module_entry ibase_module_entry;
2525#define phpext_interbase_ptr &ibase_module_entry
2626
2727#include "php_version.h"
28- #define PHP_INTERBASE_VERSION "1.1.1 "
28+ #define PHP_INTERBASE_VERSION "1.1.2 "
2929
3030PHP_MINIT_FUNCTION (ibase );
3131PHP_RINIT_FUNCTION (ibase );
You can’t perform that action at this time.
0 commit comments