From 5fdbcacf79e38153de229779c0f16730e0d68aa0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 13 Dec 2019 08:21:02 +0100 Subject: - update to 1.5.1 - drop patch merged upstream --- 90.patch | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 90.patch (limited to '90.patch') diff --git a/90.patch b/90.patch deleted file mode 100644 index 66b8bcc..0000000 --- a/90.patch +++ /dev/null @@ -1,46 +0,0 @@ -From cc5731a3b1c0257a7e227443dca69b64f2dbc4d0 Mon Sep 17 00:00:00 2001 -From: Remi Collet -Date: Tue, 1 Oct 2019 09:25:39 +0200 -Subject: [PATCH 1/2] expose MMDB_LIB_VERSION to userland - ---- - ext/maxminddb.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/ext/maxminddb.c b/ext/maxminddb.c -index 91dd706..239decc 100644 ---- a/ext/maxminddb.c -+++ b/ext/maxminddb.c -@@ -665,6 +665,7 @@ PHP_MINIT_FUNCTION(maxminddb) { - maxminddb_obj_handlers.offset = XtOffsetOf(maxminddb_obj, std); - maxminddb_obj_handlers.free_obj = maxminddb_free_storage; - #endif -+ zend_declare_class_constant_string(maxminddb_ce, "MMDB_LIB_VERSION", sizeof("MMDB_LIB_VERSION")-1, MMDB_lib_version() TSRMLS_CC); - - return SUCCESS; - } - -From 91e160eaf465d1646f18ecf182271d59ab219d31 Mon Sep 17 00:00:00 2001 -From: Remi Collet -Date: Tue, 1 Oct 2019 09:30:37 +0200 -Subject: [PATCH 2/2] skip test when running with extension build against old - library - ---- - tests/MaxMind/Db/Test/ReaderTest.php | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/tests/MaxMind/Db/Test/ReaderTest.php b/tests/MaxMind/Db/Test/ReaderTest.php -index 773bedd..3cbd0ff 100644 ---- a/tests/MaxMind/Db/Test/ReaderTest.php -+++ b/tests/MaxMind/Db/Test/ReaderTest.php -@@ -243,6 +243,9 @@ public function testGetWithPrefixLen() - */ - public function testV6AddressV4Database() - { -+ if (defined("MaxMind\\Db\\Reader::MMDB_LIB_VERSION") && version_compare(Reader::MMDB_LIB_VERSION, '1.2.0', '<')) { -+ $this->markTestSkipped('MMDB_LIB_VERSION < 1.2.0'); -+ } - $reader = new Reader('tests/data/test-data/MaxMind-DB-test-ipv4-24.mmdb'); - $reader->get('2001::'); - } -- cgit