Skip to content

Commit 0a2bddb

Browse files
committed
dev-libs/apr-util: improve my_bool patch
Closes: https://bugs.gentoo.org/734020 Package-Manager: Portage-3.0.0, Repoman-2.3.23 Signed-off-by: Thomas Deutschmann <[email protected]>
1 parent 6397a5c commit 0a2bddb

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1-
Description: Reintroduce my_bool to fix build with MySQL 8
2-
Author: Robie Basak <[email protected]>
3-
Bug-Ubuntu: https://bugs.launchpad.net/bugs/1863026
4-
Forwarded: no
5-
Last-Update: 2020-02-18
6-
---
7-
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
81
--- a/dbd/apr_dbd_mysql.c
92
+++ b/dbd/apr_dbd_mysql.c
10-
@@ -41,6 +41,7 @@
3+
@@ -41,6 +41,10 @@
114
#endif
125
#endif
136
#include <mysql.h>
7+
+#ifndef HAVE_TYPE_MY_BOOL
8+
+#include <stdbool.h>
149
+typedef bool my_bool;
10+
+#endif
1511
#include <errmsg.h>
1612
#endif
1713

0 commit comments

Comments
 (0)