From 4a4a55e6264b12cd3a50bbf96b88aa7ad4547533 Mon Sep 17 00:00:00 2001 From: Steve Shaw Date: Fri, 16 Apr 2021 13:25:17 +0100 Subject: [PATCH 1/2] =?UTF-8?q?Fix=20error:=20unknown=20type=20name=20?= =?UTF-8?q?=E2=80=98my=5Fbool=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- generic/mariatcl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generic/mariatcl.c b/generic/mariatcl.c index 542bba9..78401d6 100644 --- a/generic/mariatcl.c +++ b/generic/mariatcl.c @@ -981,7 +981,7 @@ static int Mariatcl_Connect(ClientData clientData, Tcl_Interp *interp, int objc, #if (MYSQL_VERSION_ID >= 32350) if (mysql_options_reconnect) { - my_bool reconnect = 1; + bool reconnect = 1; mysql_options(handle->connection, MYSQL_OPT_RECONNECT, &reconnect); } mysql_options(handle->connection, MYSQL_READ_DEFAULT_GROUP, groupname); From f1d0df0acbea8eabb1216ae8d9a9e2d826021f07 Mon Sep 17 00:00:00 2001 From: Steve Shaw Date: Fri, 16 Apr 2021 13:33:35 +0100 Subject: [PATCH 2/2] Update pkgindex --- pkgIndex.tcl.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgIndex.tcl.in b/pkgIndex.tcl.in index 5313c6f..e4d3fb7 100755 --- a/pkgIndex.tcl.in +++ b/pkgIndex.tcl.in @@ -1,5 +1,5 @@ # # Tcl package index file # -package ifneeded mysqltcl @PACKAGE_VERSION@ \ +package ifneeded mariatcl @PACKAGE_VERSION@ \ [list load [file join $dir @PKG_LIB_FILE@] @PACKAGE_NAME@]