net-fs/netatalk-3.1.2: fix compilation due to my_bool, bug #692560

Closes: https://bugs.gentoo.org/692560
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
This commit is contained in:
Fabian Groffen
2020-04-08 09:42:50 +02:00
parent 75a0666455
commit 18c9cd112e
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
fix my_bool compilation issue due to newer MySQL removing the type
https://bugs.gentoo.org/692560
Patch by Kostiantyn Gorbunov
--- a/libatalk/cnid/mysql/cnid_mysql.c 2016-03-10 10:06:20.000000000 +0200
+++ b/libatalk/cnid/mysql/cnid_mysql.c 2019-09-02 19:55:04.361132422 +0300
@@ -848,7 +848,7 @@
/* Initialize and connect to MySQL server */
EC_NULL( db->cnid_mysql_con = mysql_init(NULL) );
- my_bool my_recon = true;
+ bool my_recon = true;
EC_ZERO( mysql_options(db->cnid_mysql_con, MYSQL_OPT_RECONNECT, &my_recon) );
int my_timeout = 600;
EC_ZERO( mysql_options(db->cnid_mysql_con, MYSQL_OPT_CONNECT_TIMEOUT, &my_timeout) );

View File

@@ -59,6 +59,7 @@ REQUIRED_USE="
PATCHES=(
"${FILESDIR}"/${PN}-3.1.7-gentoo.patch
"${FILESDIR}"/${PN}-3.1.8-disable-ld-library-path.patch #564350
"${FILESDIR}"/${PN}-3.1.12-my_bool.patch #692560
)
src_prepare() {