mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
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:
16
net-fs/netatalk/files/netatalk-3.1.12-my_bool.patch
Normal file
16
net-fs/netatalk/files/netatalk-3.1.12-my_bool.patch
Normal 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) );
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user