Po-Chuan Hsieh 2023-10-12 06:22:06 +08:00
parent 9e0578a728
commit 4ec9cc421b
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
3 changed files with 4 additions and 22 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= couchbase
PORTVERSION= 4.1.5
PORTVERSION= 4.1.6
CATEGORIES= databases
MASTER_SITES= https://github.com/couchbase/couchbase-php-client/releases/download/${PORTVERSION}/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1692812402
SHA256 (PECL/couchbase-4.1.5.tgz) = e1335d70e10687e969ec73b546995d1fe8937ebe511d97c71bbaf2d66056d9f5
SIZE (PECL/couchbase-4.1.5.tgz) = 2126877
TIMESTAMP = 1697030426
SHA256 (PECL/couchbase-4.1.6.tgz) = 43da457eceb494a8fee95cbb7ff9383efe66899f525cf530760507257080597f
SIZE (PECL/couchbase-4.1.6.tgz) = 2134043

View File

@ -1,18 +0,0 @@
--- src/wrapper/common.hxx.orig 2023-05-26 07:56:45 UTC
+++ src/wrapper/common.hxx
@@ -31,12 +31,12 @@ ZEND_BEGIN_MODULE_GLOBALS(couchbase)
/* INI settings */
char* log_level{ nullptr };
char* log_path{ nullptr };
-zend_bool log_php_log_err{ 1 };
-zend_bool log_stderr{ 0 };
+bool log_php_log_err{ 1 };
+bool log_stderr{ 0 };
zend_long max_persistent{ -1 }; /* maximum number of persistent connections per process */
zend_long persistent_timeout{ -1 }; /* time period after which idle persistent connection is considered expired */
/* module variables */
-zend_bool initialized{ 0 };
+bool initialized{ 0 };
zend_long num_persistent{ 0 }; /* number of existing persistent connections */
ZEND_END_MODULE_GLOBALS(couchbase)