head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.8 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.2.0.6 pkgsrc-2012Q4-base:1.2 pkgsrc-2011Q4:1.2.0.4 pkgsrc-2011Q4-base:1.2 pkgsrc-2011Q2:1.2.0.2 pkgsrc-2011Q2-base:1.2 pkgsrc-2009Q4:1.1.0.46 pkgsrc-2009Q4-base:1.1 pkgsrc-2009Q3:1.1.0.44 pkgsrc-2009Q3-base:1.1 pkgsrc-2009Q2:1.1.0.42 pkgsrc-2009Q2-base:1.1 pkgsrc-2009Q1:1.1.0.40 pkgsrc-2009Q1-base:1.1 pkgsrc-2008Q4:1.1.0.38 pkgsrc-2008Q4-base:1.1 pkgsrc-2008Q3:1.1.0.36 pkgsrc-2008Q3-base:1.1 cube-native-xorg:1.1.0.34 cube-native-xorg-base:1.1 pkgsrc-2008Q2:1.1.0.32 pkgsrc-2008Q2-base:1.1 cwrapper:1.1.0.30 pkgsrc-2008Q1:1.1.0.28 pkgsrc-2008Q1-base:1.1 pkgsrc-2007Q4:1.1.0.26 pkgsrc-2007Q4-base:1.1 pkgsrc-2007Q3:1.1.0.24 pkgsrc-2007Q3-base:1.1 pkgsrc-2007Q2:1.1.0.22 pkgsrc-2007Q2-base:1.1 pkgsrc-2007Q1:1.1.0.20 pkgsrc-2007Q1-base:1.1 pkgsrc-2006Q4:1.1.0.18 pkgsrc-2006Q4-base:1.1 pkgsrc-2006Q3:1.1.0.16 pkgsrc-2006Q3-base:1.1 pkgsrc-2006Q2:1.1.0.14 pkgsrc-2006Q2-base:1.1 pkgsrc-2006Q1:1.1.0.12 pkgsrc-2006Q1-base:1.1 pkgsrc-2005Q4:1.1.0.10 pkgsrc-2005Q4-base:1.1 pkgsrc-2005Q3:1.1.0.8 pkgsrc-2005Q3-base:1.1 pkgsrc-2005Q2:1.1.0.6 pkgsrc-2005Q2-base:1.1 pkgsrc-2005Q1:1.1.0.4 pkgsrc-2005Q1-base:1.1 pkgsrc-2004Q4:1.1.0.2 pkgsrc-2004Q4-base:1.1; locks; strict; comment @# @; 1.2 date 2010.03.05.13.50.04; author taca; state dead; branches; next 1.1; 1.1 date 2004.12.01.16.00.50; author xtraeme; state Exp; branches; next ; desc @@ 1.2 log @Update mysqlcc to 0.9.8. * Suppoer mysql4 and mysql5 (but not mysql51 because of API change). * Install supporting files. Changes for 0.9.8 ----------------- * Created a conditional for mysql_shutdown to check for the existance of SHUTDOWN_DEFAULT in order to work with older mysql client libraries * Changed requirement for qpopmenu.h to qpopupmenu.h in include/CProperties.h and src/CTableTools.cpp * Added /usr/share/qt3 to the list of places to look for qt3 (fixes Debian problems) Notes for 0.9.7 ---------------- This is a development release. Henceforth, version numbers will follow the Linux kernel standard wherein odd numbered releases (such as 0.9.7) refer to development releases and even numbered releases (such as 0.9.8) refer to stable releases. Users connecting to or using MySQL 5 libraries should be using this release. Users still connecting only to MySQL 4 or lower servers should continue using version 0.9.4. This is an issue which will be addressed by version 0.9.8 and, if that version is available at the time you read this, that version should be used instead. Changes for 0.9.7 ----------------- * Changed the call to mysql_shutdown to include SHUTDOWN_DEFAULT as required by MySQL >= 5 client libraries in CMySQL.cpp * Repaired default_table assignment in CQueryWindow.cpp @ text @$NetBSD: patch-ad,v 1.1 2004/12/01 16:00:50 xtraeme Exp $ --- shared/src/CMySQL.cpp.orig 2004-12-01 16:35:54.000000000 +0100 +++ shared/src/CMySQL.cpp 2004-12-01 16:37:29.000000000 +0100 @@@@ -451,7 +451,11 @@@@ if (!isConnected()) return false; +#if (MYSQL_VERSION_ID >= 40103) + if (mysql_shutdown(mysql, SHUTDOWN_DEFAULT) != 0) +#else if (mysql_shutdown(mysql) != 0) +#endif { if (emiterror) emitError(); @ 1.1 log @* mysql_shutdown() takes two arguments in MySQL >= 4.1.3, fix this checking MYSQL_VERSION_ID. * Use mysql.bl3.mk and MYSQL_VERSIONS_ACCEPTED=40 41. This fixes the bulk build problem, bump PKGREVISION. @ text @d1 1 a1 1 $NetBSD$ @