summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2020-08-29 11:30:06 +0300
committerMikle Kolyada <zlogene@gentoo.org>2020-08-29 11:30:17 +0300
commite34a9205e956575cd2e4d15a6d6e1be569bd345c (patch)
treeca4422f3386e8d747f19efb9465352c508c8137e /net-dns/bind/files
parentnet-dns/bind-tools: Drop old (diff)
downloadgentoo-e34a9205e956575cd2e4d15a6d6e1be569bd345c.tar.gz
gentoo-e34a9205e956575cd2e4d15a6d6e1be569bd345c.tar.bz2
gentoo-e34a9205e956575cd2e4d15a6d6e1be569bd345c.zip
net-dns/bind: Drop old
Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'net-dns/bind/files')
-rw-r--r--net-dns/bind/files/bind-9.14.8-mysql8-bool.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/net-dns/bind/files/bind-9.14.8-mysql8-bool.patch b/net-dns/bind/files/bind-9.14.8-mysql8-bool.patch
deleted file mode 100644
index 8546edc1521d..000000000000
--- a/net-dns/bind/files/bind-9.14.8-mysql8-bool.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/contrib/dlz/drivers/dlz_mysql_driver.c
-+++ b/contrib/dlz/drivers/dlz_mysql_driver.c
-@@ -789,8 +789,11 @@ mysql_create(const char *dlzname, unsigned int argc, char *argv[],
- char *endp;
- int j;
- unsigned int flags = 0;
-+#if MYSQL_VERSION_ID >= 80000
-+ typedef bool my_bool; // Workaround to make library work with MySQL client 8.0 as well as earlier versions
-+#endif
- #if MYSQL_VERSION_ID >= 50000
-- my_bool auto_reconnect = 1;
-+ my_bool auto_reconnect = 1;
- #endif
-
- UNUSED(driverarg);