head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.8 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.6 pkgsrc-2012Q4-base:1.5 pkgsrc-2011Q4:1.5.0.4 pkgsrc-2011Q4-base:1.5 pkgsrc-2011Q2:1.5.0.2 pkgsrc-2011Q2-base:1.5 pkgsrc-2010Q2:1.4.0.24 pkgsrc-2010Q2-base:1.4 pkgsrc-2010Q1:1.4.0.22 pkgsrc-2010Q1-base:1.4 pkgsrc-2009Q4:1.4.0.20 pkgsrc-2009Q4-base:1.4 pkgsrc-2009Q3:1.4.0.18 pkgsrc-2009Q3-base:1.4 pkgsrc-2009Q2:1.4.0.16 pkgsrc-2009Q2-base:1.4 pkgsrc-2009Q1:1.4.0.14 pkgsrc-2009Q1-base:1.4 pkgsrc-2008Q4:1.4.0.12 pkgsrc-2008Q4-base:1.4 pkgsrc-2008Q3:1.4.0.10 pkgsrc-2008Q3-base:1.4 cube-native-xorg:1.4.0.8 cube-native-xorg-base:1.4 pkgsrc-2008Q2:1.4.0.6 pkgsrc-2008Q2-base:1.4 cwrapper:1.4.0.4 pkgsrc-2008Q1:1.4.0.2 pkgsrc-2008Q1-base:1.4 pkgsrc-2007Q4:1.2.0.6 pkgsrc-2007Q4-base:1.2 pkgsrc-2007Q3:1.2.0.4 pkgsrc-2007Q3-base:1.2 pkgsrc-2007Q2:1.2.0.2 pkgsrc-2007Q2-base:1.2 pkgsrc-2007Q1:1.1.0.18 pkgsrc-2007Q1-base:1.1 pkgsrc-2006Q4:1.1.0.16 pkgsrc-2006Q4-base:1.1 pkgsrc-2006Q3:1.1.0.14 pkgsrc-2006Q3-base:1.1 pkgsrc-2006Q2:1.1.0.12 pkgsrc-2006Q2-base:1.1 pkgsrc-2006Q1:1.1.0.10 pkgsrc-2006Q1-base:1.1 pkgsrc-2005Q4:1.1.0.8 pkgsrc-2005Q4-base:1.1 pkgsrc-2005Q3:1.1.0.6 pkgsrc-2005Q3-base:1.1 pkgsrc-2005Q2:1.1.0.4 pkgsrc-2005Q2-base:1.1 pkgsrc-2005Q1:1.1.0.2 pkgsrc-2005Q1-base:1.1; locks; strict; comment @# @; 1.5 date 2010.09.23.14.35.40; author taca; state dead; branches; next 1.4; 1.4 date 2008.03.26.13.22.00; author wiz; state Exp; branches; next 1.3; 1.3 date 2008.03.25.13.42.52; author wiz; state dead; branches; next 1.2; 1.2 date 2007.05.23.08.11.50; author martti; state Exp; branches; next 1.1; 1.1 date 2005.02.18.00.48.05; author xtraeme; state Exp; branches; next ; desc @@ 1.5 log @Good-by mysql4-client now. It isn't supported any more and no package need it now. @ text @$NetBSD: patch-ba,v 1.4 2008/03/26 13:22:00 wiz Exp $ --- client/mysql.cc.orig 2006-11-03 04:15:47.000000000 +0200 +++ client/mysql.cc 2007-05-23 08:25:23.000000000 +0300 @@@@ -39,6 +39,9 @@@@ #include "my_readline.h" #include #include +#ifdef NEEDS_BSTRING_H // defines bzero() +#include +#endif #if defined(USE_LIBEDIT_INTERFACE) && defined(HAVE_LOCALE_H) #include @@@@ -410,8 +413,13 @@@@ if (opt_sigint_ignore) signal(SIGINT, SIG_IGN); else - signal(SIGINT, mysql_end); // Catch SIGINT to clean up - signal(SIGQUIT, mysql_end); // Catch SIGQUIT to clean up +#ifdef IRIX5 +#define _MYSQL_END_TYPE (void (*)(...)) +#else +#define _MYSQL_END_TYPE +#endif + signal(SIGINT, _MYSQL_END_TYPE mysql_end); // Catch SIGINT to clean up + signal(SIGQUIT, _MYSQL_END_TYPE mysql_end); // Catch SIGQUIT to clean up /* Run in interactive mode like the ingres/postgres monitor @ 1.4 log @Re-add mysql4 packages. Andreas Hallmann graciously agreed to maintain them. @ text @d1 1 a1 1 $NetBSD: patch-ba,v 1.2 2007/05/23 08:11:50 martti Exp $ @ 1.3 log @Remove mysql4 (4.1 branch) packages. They have security problems and are not maintained. Removal was announced on pkgsrc-users on March 13. @ text @@ 1.2 log @Updated MySQL to 4.1.22 Lots of bug fixes, see http://dev.mysql.com/doc/refman/4.1/en/news-4-1-22.html @ text @d1 1 a1 1 $NetBSD: patch-ba,v 1.1 2005/02/18 00:48:05 xtraeme Exp $ @ 1.1 log @Apply patches from Georg Schwarz to make this build on IRIX 5. @ text @d1 1 a1 1 $NetBSD$ d3 2 a4 2 --- client/mysql.cc.orig 2005-02-18 01:36:23.000000000 +0100 +++ client/mysql.cc 2005-02-18 01:38:00.000000000 +0100 d15 1 a15 1 @@@@ -408,8 +411,13 @@@@ @