You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/apr-util/files/apr-util-1.6.1-my_bool.patch

16 lines
311 B

--- a/dbd/apr_dbd_mysql.c
+++ b/dbd/apr_dbd_mysql.c
@@ -41,6 +41,12 @@
#endif
#endif
#include <mysql.h>
+// MariaDB still include definition of my_bool but has a higher version ID
+#ifndef MARIADB_VERSION_ID
+#if MYSQL_VERSION_ID > 80000
+typedef bool my_bool;
+#endif
+#endif
#include <errmsg.h>
#endif