From 17f931a0fedd0f4093204fa8400305f353983368 Mon Sep 17 00:00:00 2001 From: demon Date: Fri, 31 Dec 2004 12:07:35 +0000 Subject: Fix build with MySQL 4.1.x. Submitted by: Michael Hambly PR: 74237 --- .../patch-src-mysql-mainwindow-mainwindowslotshutdown.cxx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 databases/mysql-navigator/files/patch-src-mysql-mainwindow-mainwindowslotshutdown.cxx (limited to 'databases/mysql-navigator') diff --git a/databases/mysql-navigator/files/patch-src-mysql-mainwindow-mainwindowslotshutdown.cxx b/databases/mysql-navigator/files/patch-src-mysql-mainwindow-mainwindowslotshutdown.cxx new file mode 100644 index 000000000000..1c1c81e72242 --- /dev/null +++ b/databases/mysql-navigator/files/patch-src-mysql-mainwindow-mainwindowslotshutdown.cxx @@ -0,0 +1,14 @@ +--- src/mysql/mainwindow/mainwindowslotshutdown.cxx.orig Tue Mar 5 07:13:22 2002 ++++ src/mysql/mainwindow/mainwindowslotshutdown.cxx Fri Dec 31 12:49:00 2004 +@@ -9,7 +9,11 @@ + if(z == 1) + return; + ++#if ( MYSQL_VERSION_ID >= 40103 && MYSQL_VERSION_ID < 50000 ) || ( MYSQL_VERSION_ID >= 50001 ) ++ if(mysql_shutdown(&mysql, SHUTDOWN_DEFAULT)) ++#else + if(mysql_shutdown(&mysql)) ++#endif + { + QMessageBox::critical(this, tr("MySQL Navigator"), QString::fromLocal8Bit(mysql_error(&mysql))); + } -- cgit