summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorveego <veego@pkgsrc.org>2001-10-08 17:23:19 +0000
committerveego <veego@pkgsrc.org>2001-10-08 17:23:19 +0000
commit3523c99beb622f4a3ef69a8743c496528ee0805d (patch)
tree9d00929997196fb14f535ffa17cea7702bbaca2f /databases
parent7865fb7f3f5e44f64d8f37e11d9eb1c305309cd8 (diff)
downloadpkgsrc-3523c99beb622f4a3ef69a8743c496528ee0805d.tar.gz
Update mysql to 3.23.43.
- mysqlbinlog moved from the mysql-server to the mysql-client package - some pkgsrc patches are now part of the mysql distribution. Changes in release 3.23.43 -------------------------- * Fixed a bug in INSERT DELAYED and FLUSH TABLES introduced in 3.23.42. * Fixed unlikely bug, which returned not matching rows, in SELECT with many tables and multi-column indexes and 'range' type. * Fixed a unlikely core-dump bug when doing EXPLAIN SELECT when using many tables and ORDER BY. * Fixed bug in LOAD DATA FROM MASTER when using table with CHECKSUM=1. * Added unique error message when one gets a DEADLOCK during a transaction with BDB tables. * Fixed problem with BDB tables and UNIQUE columns defined as NULL. * Fixed problem with myisampack when using pre-space filled CHAR columns. * Applied patch from Yuri Dario for OS2. * Fixed bug in --safe-user-create Changes in release 3.23.42 -------------------------- * Fixed problem when using LOCK TABLES and BDB tables. * Fixed problem with REPAIR TABLE on MyISAM tables with row lengths between 65517 - 65520 bytes * Fixed rare hang when doing mysqladmin shutdown when there was a lot of activity in other threads. * Fixed problem with INSERT DELAYED where delay thread could be hanging on upgrading locks without any apparent reasons. * Fixed problem with myisampack and BLOB. * Fixes problem when one edited .MRG tables by hand. (Patch from Benjamin Pflugmann). * Enforce that all tables in a MERGE table come from the same database. * Fixed bug with LOAD DATA INFILE and transactional tables. * Fix bug when using INSERT DELAYED with wrong column definition. * Fixed coredump during REPAIR of some particularly broken tables. * Fixed bug in InnoDB and AUTO_INCREMENT columns. * Fixed bug in InnoDB and RENAME TABLE columns. * Fixed critical bug in InnoDB and BLOB columns. If one has used BLOB columns larger than 8000 bytes in an InnoDB table, one must dump the table with mysqldump, drop it and restore it from the dump. * Applied large patch for OS/2 from Yuri Dario. * Fixed problem with InnoDB when one could get the error Can't execute the given command... even when one didn't have an active transaction. * Applied some minor fixes that concern Gemini. * Use real arithmetic operations even in integer context if not all arguments are integers. (Fixes uncommon bug in some integer contexts). * Don't force everything to lower cases on Windows. (To fix problem with Windows and ALTER TABLE). Now --lower_case_names also works on Unix. * Fixed that automatic rollback that is done when thread end doesn't lock other threads. Changes in release 3.23.41 -------------------------- * Added option --sql-mode=option[,option[,option]]. See section 4.1.1 mysqld Command-line Options. * Fixed possible problem with shutdown on Solaris where the `.pid' file wasn't deleted. * InnoDB now supports < 4 GB rows. The former limit was 8000 bytes. * The doublewrite file flush method is used in InnoDB. It reduces the need for Unix fsync calls to a fraction and improves performance on most Unix flavors. * You can now use the InnoDB Monitor to print a lot of InnoDB state information, including locks, to the standard output; useful in performance tuning. * Several bugs which could cause hangs in InnoDB have been fixed. * Split record_buffer to record_buffer and record_rnd_buffer. To make things compatible to previous MySQL versions, if record_rnd_buffer is not set, then it takes the value of record_buffer. * Fixed optimizing bug in ORDER BY where some ORDER BY parts where wrongly removed. * Fixed overflow bug with ALTER TABLE and MERGE tables. * Added prototypes for my_thread_init() and my_thread_end() to `mysql_com.h' * Added option --safe-user-create to mysqld. * Fixed bug in SELECT DISTINCT ... HAVING that casued error message Can't find record in '#... Changes in release 3.23.40 -------------------------- * Fixed problem with --low-priority-updates and INSERT's. * Fixed bug in slave thread when under some rare circumstances it could get 22 bytes ahead on the offset in the master. * Added slave_wait_timeout for replication. * Fixed problem with UPDATE and BDB tables. * Fixed hard bug in BDB tables when using key parts. * Fixed problem when using the GRANT FILE ON database.* ...; Previously we added the DROP privilege for the database. * Fixed DELETE FROM table_name ... LIMIT 0 and UPDATE FROM table_name ... LIMIT 0 acted as though the LIMIT clause was not present (they deleted or updated all selected rows). * CHECK TABLE now checks if an AUTO_INCREMENT column contains the value 0. * Sending a SIGHUP to mysqld will now only flush the logs, not reset the replication. * Fixed parser to allow floats of type 1.0e1 (no sign after e). * Option --force to myisamchk now also updates states. * Added option --warnings to mysqld. Now mysqld only prints the error Aborted connection if this option is used. * Fixed problem with SHOW CREATE TABLE when you didn't have a PRIMARY KEY. * Properly fixed the rename of innodb_unix_file_flush_method to innodb_flush_method. * Fixed bug when converting UNSIGNED BIGINT to DOUBLE. This caused a problem when doing comparisons with BIGINT values outside of the signed range. * Fixed bug in BDB tables when querying empty tables. * Fixed a bug when using COUNT(DISTINCT) with LEFT JOIN and there wasn't any matching rows. * Removed all documentation referring to the GEMINI table type. GEMINI is not released under an Open Source license.
Diffstat (limited to 'databases')
-rw-r--r--databases/mysql-client/Makefile.common4
-rw-r--r--databases/mysql-client/distinfo8
-rw-r--r--databases/mysql-client/patches/patch-af40
-rw-r--r--databases/mysql-client/pkg/PLIST5
-rw-r--r--databases/mysql-server/distinfo14
-rw-r--r--databases/mysql-server/patches/patch-ab28
-rw-r--r--databases/mysql-server/patches/patch-ac32
-rw-r--r--databases/mysql-server/patches/patch-ad13
-rw-r--r--databases/mysql-server/patches/patch-ae40
-rw-r--r--databases/mysql-server/patches/patch-af40
-rw-r--r--databases/mysql-server/patches/patch-ag13
-rw-r--r--databases/mysql-server/pkg/PLIST6
12 files changed, 33 insertions, 210 deletions
diff --git a/databases/mysql-client/Makefile.common b/databases/mysql-client/Makefile.common
index c9b806c9e88..521e40ced24 100644
--- a/databases/mysql-client/Makefile.common
+++ b/databases/mysql-client/Makefile.common
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile.common,v 1.3 2001/07/08 13:59:14 bad Exp $
+# $NetBSD: Makefile.common,v 1.4 2001/10/08 17:23:19 veego Exp $
-DISTNAME= mysql-3.23.39
+DISTNAME= mysql-3.23.43
CATEGORIES= databases
MASTER_SITES= ftp://ftp.mysql.com/MySQL-3.23/ \
http://www.mysql.com/Downloads/MySQL-3.23/ \
diff --git a/databases/mysql-client/distinfo b/databases/mysql-client/distinfo
index 2059e444034..415fbb2ca14 100644
--- a/databases/mysql-client/distinfo
+++ b/databases/mysql-client/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.4 2001/07/08 13:59:14 bad Exp $
+$NetBSD: distinfo,v 1.5 2001/10/08 17:23:19 veego Exp $
-SHA1 (mysql-3.23.39.tar.gz) = bca088128d17f2274cff16bc0c4aaf383d5c27f1
-Size (mysql-3.23.39.tar.gz) = 11211077 bytes
-SHA1 (patch-af) = e21b8898e24a1d576f8301b0bf9363f648d81b61
+SHA1 (mysql-3.23.43.tar.gz) = ebae00aeac2b301ebaf9a919c070a0005d4b1ac3
+Size (mysql-3.23.43.tar.gz) = 11777006 bytes
+SHA1 (patch-af) = 25c08717f4d4f90ded90d3a0c2621fb2073abd7c
diff --git a/databases/mysql-client/patches/patch-af b/databases/mysql-client/patches/patch-af
index 33e841fdf2b..26a04d3f6de 100644
--- a/databases/mysql-client/patches/patch-af
+++ b/databases/mysql-client/patches/patch-af
@@ -1,20 +1,8 @@
-$NetBSD: patch-af,v 1.2 2001/07/08 13:59:15 bad Exp $
+$NetBSD: patch-af,v 1.3 2001/10/08 17:23:20 veego Exp $
---- configure.orig Tue Jun 12 21:07:37 2001
-+++ configure Sat Jul 7 23:37:20 2001
-@@ -5065,7 +5065,10 @@
- #define HAVE_LIBWRAP 1
- EOF
-
-- WRAPLIBS="-L$with_libwrap/lib -lwrap"
-+ if test "$with_libwrap" != "yes"; then
-+ WRAPLIBS="-L${with_libwrap}/lib"
-+ fi
-+ WRAPLIBS="${WRAPLIBS} -lwrap"
- else
- echo "configure: failed program was:" >&5
- cat conftest.$ac_ext >&5
-@@ -9554,7 +9557,6 @@
+--- configure-orig Wed Oct 3 18:08:48 2001
++++ configure Sun Oct 7 19:22:25 2001
+@@ -9617,7 +9617,6 @@
else
bench_dirs=""
fi
@@ -22,7 +10,7 @@ $NetBSD: patch-af,v 1.2 2001/07/08 13:59:15 bad Exp $
# Don't build readline, i have it already
-@@ -9575,7 +9577,11 @@
+@@ -9638,7 +9637,11 @@
# This requires readline to be in a standard place. Mosty for linux
# there readline may be a shared library.
readline_dir=""
@@ -35,21 +23,3 @@ $NetBSD: patch-af,v 1.2 2001/07/08 13:59:15 bad Exp $
fi
-@@ -10745,15 +10751,15 @@
-
- MT_INCLUDES="-I\$(top_srcdir)/mit-pthreads/include"
-
-- MT_LD_ADD="-L \$(top_srcdir)/mit-pthreads/obj/ -lpthread"
-+ MT_LD_ADD="\$(top_srcdir)/mit-pthreads/obj/libpthread.a"
-
-- LIBS="$MT_LD_ADD $LIBS"
- echo ""
- echo "Configuring MIT Pthreads"
- # We will never install so installation paths are not needed.
- (cd mit-pthreads; sh ./configure)
- echo "End of MIT Pthreads configuration"
- echo ""
-+ LIBS="$MT_LD_ADD $LIBS"
- fi
- fi
-
diff --git a/databases/mysql-client/pkg/PLIST b/databases/mysql-client/pkg/PLIST
index 316f50d1740..16466691dc1 100644
--- a/databases/mysql-client/pkg/PLIST
+++ b/databases/mysql-client/pkg/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.8 2001/07/08 13:59:15 bad Exp $
+@comment $NetBSD: PLIST,v 1.9 2001/10/08 17:23:20 veego Exp $
bin/msql2mysql
bin/mysql
bin/mysqlcheck
@@ -10,6 +10,7 @@ bin/mysql_setpermission
bin/mysql_zap
bin/mysqlaccess
bin/mysqladmin
+bin/mysqlbinlog
bin/mysqlbug
bin/mysqld_multi
bin/mysqldump
@@ -63,7 +64,7 @@ share/mysql/my-huge.cnf
share/mysql/my-large.cnf
share/mysql/my-medium.cnf
share/mysql/my-small.cnf
-share/mysql/mysql-3.23.39.spec
+share/mysql/mysql-3.23.43.spec
share/mysql/mysql-log-rotate
share/mysql/mysql.server
@dirrm share/mysql
diff --git a/databases/mysql-server/distinfo b/databases/mysql-server/distinfo
index a530e20d94c..6cdbdc81e57 100644
--- a/databases/mysql-server/distinfo
+++ b/databases/mysql-server/distinfo
@@ -1,11 +1,7 @@
-$NetBSD: distinfo,v 1.6 2001/07/08 15:23:16 bad Exp $
+$NetBSD: distinfo,v 1.7 2001/10/08 17:24:15 veego Exp $
-SHA1 (mysql-3.23.39.tar.gz) = bca088128d17f2274cff16bc0c4aaf383d5c27f1
-Size (mysql-3.23.39.tar.gz) = 11211077 bytes
+SHA1 (mysql-3.23.43.tar.gz) = ebae00aeac2b301ebaf9a919c070a0005d4b1ac3
+Size (mysql-3.23.43.tar.gz) = 11777006 bytes
SHA1 (patch-aa) = 05c56d81e17893dd267fcd5f68d8c378f024a06f
-SHA1 (patch-ab) = 4f10917780d73cb4a58127b27a5d8c1c9f63e0d3
-SHA1 (patch-ac) = 5056bd313f73eb0b2ebf805096f58d855478a6b1
-SHA1 (patch-ad) = 1aecfee152d303b3d65f3866032d2a6d49538f46
-SHA1 (patch-ae) = 91e0c47e1e722cf84463af2c298a17beac56e2e9
-SHA1 (patch-af) = e21b8898e24a1d576f8301b0bf9363f648d81b61
-SHA1 (patch-ag) = 6d908d292cb71459820817153dde87de7242a7f7
+SHA1 (patch-ae) = 3df96ba682364349ae1d955328da76cc59810b1b
+SHA1 (patch-af) = 5492aad46ff87863856ae459f8237f2bf8722ce4
diff --git a/databases/mysql-server/patches/patch-ab b/databases/mysql-server/patches/patch-ab
deleted file mode 100644
index 72d18dfd05e..00000000000
--- a/databases/mysql-server/patches/patch-ab
+++ /dev/null
@@ -1,28 +0,0 @@
-$NetBSD: patch-ab,v 1.4 2001/03/26 13:41:32 bad Exp $
-
---- mit-pthreads/machdep/netbsd-1.1/__signal.h.orig Fri Mar 16 01:51:54 2001
-+++ mit-pthreads/machdep/netbsd-1.1/__signal.h Sun Mar 25 00:54:56 2001
-@@ -1,5 +1,7 @@
- #include <sys/signal.h>
-
-+__BEGIN_DECLS
-+
- #if NSIG <= 32
- #define __SIGEMPTYSET 0
- #define __SIGFILLSET 0xffffffff
-@@ -8,6 +10,9 @@
- #define __SIGISMEMBER(s, n) ((*(s) & (1 << ((n) - 1))) != 0)
-
- #else /* XXX Netbsd >= 1.3H */
-+
-+int sigaction __P_((int, const struct sigaction *, struct sigaction *)) __RENAME(__sigaction14);
-+
- #define __SIGEMPTYSET { 0, 0, 0, 0}
- #define __SIGFILLSET { 0xffffffff, 0xffffffff, \
- 0xffffffff, 0xffffffff }
-@@ -18,3 +23,5 @@
- #define __SIGISMEMBER(s, n) (((s)->__bits[__SIGWORD(n)] & __SIGMASK(n)) != 0)
-
- #endif
-+
-+__END_DECLS
diff --git a/databases/mysql-server/patches/patch-ac b/databases/mysql-server/patches/patch-ac
deleted file mode 100644
index 0095a334a71..00000000000
--- a/databases/mysql-server/patches/patch-ac
+++ /dev/null
@@ -1,32 +0,0 @@
-$NetBSD: patch-ac,v 1.4 2001/07/08 15:23:17 bad Exp $
-
---- mit-pthreads/stdio/strerror.c.orig Tue Jun 12 21:07:25 2001
-+++ mit-pthreads/stdio/strerror.c Sun Jul 8 16:51:52 2001
-@@ -36,13 +36,18 @@
- #endif /* LIBC_SCCS and not lint */
-
- #include <string.h>
-+#if defined(__NetBSD__)
-+#include <errno.h>
-+#endif
-
- char *
- strerror(num)
- int num;
- {
-+#if !defined(__NetBSD__)
- extern int sys_nerr;
- extern char *sys_errlist[];
-+#endif
- #define UPREFIX "Unknown error: "
- static char ebuf[40] = UPREFIX; /* 64-bit number + slop */
- register unsigned int errnum;
-@@ -51,7 +56,7 @@
-
- errnum = num; /* convert to unsigned */
- if (errnum < sys_nerr)
-- return(sys_errlist[errnum]);
-+ return((char *)sys_errlist[errnum]);
-
- /* Do this by hand, so we don't include stdio(3). */
- t = tmp;
diff --git a/databases/mysql-server/patches/patch-ad b/databases/mysql-server/patches/patch-ad
deleted file mode 100644
index 004ab5feb24..00000000000
--- a/databases/mysql-server/patches/patch-ad
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ad,v 1.2 2001/03/26 13:46:20 bad Exp $
-
---- mit-pthreads/gen/ctime.c.orig Mon Jan 22 14:37:02 2001
-+++ mit-pthreads/gen/ctime.c Fri Feb 2 00:25:39 2001
-@@ -177,7 +177,7 @@
-
- static int detzcode(const char * codep)
- {
-- long result;
-+ int result;
- int i;
-
- result = 0;
diff --git a/databases/mysql-server/patches/patch-ae b/databases/mysql-server/patches/patch-ae
index 5c2797838cc..c6097554f23 100644
--- a/databases/mysql-server/patches/patch-ae
+++ b/databases/mysql-server/patches/patch-ae
@@ -1,20 +1,8 @@
-$NetBSD: patch-ae,v 1.6 2001/07/08 13:59:16 bad Exp $
+$NetBSD: patch-ae,v 1.7 2001/10/08 17:24:17 veego Exp $
---- configure.in.orig Tue Jun 12 21:07:23 2001
-+++ configure.in Sat Jul 7 23:37:11 2001
-@@ -629,7 +629,10 @@
- AC_MSG_RESULT(yes)
- AC_DEFINE(LIBWRAP)
- AC_DEFINE(HAVE_LIBWRAP)
-- WRAPLIBS="-L$with_libwrap/lib -lwrap",
-+ if test "$with_libwrap" != "yes"; then
-+ WRAPLIBS="-L${with_libwrap}/lib"
-+ fi
-+ WRAPLIBS="${WRAPLIBS} -lwrap",
- AC_MSG_RESULT(no)
- CPPFLAGS=${_cppflags} LDFLAGS=${_ldflags}),
- CPPFLAGS=${_cppflags} LDFLAGS=${_ldflags})
-@@ -1653,7 +1656,6 @@
+--- configure.in-orig Wed Oct 3 18:08:31 2001
++++ configure.in Sun Oct 7 19:56:24 2001
+@@ -1710,7 +1710,6 @@
else
bench_dirs=""
fi
@@ -22,7 +10,7 @@ $NetBSD: patch-ae,v 1.6 2001/07/08 13:59:16 bad Exp $
AC_SUBST(bench_dirs)
# Don't build readline, i have it already
-@@ -1670,7 +1672,11 @@
+@@ -1727,7 +1726,11 @@
# This requires readline to be in a standard place. Mosty for linux
# there readline may be a shared library.
readline_dir=""
@@ -35,21 +23,3 @@ $NetBSD: patch-ae,v 1.6 2001/07/08 13:59:16 bad Exp $
fi
AC_SUBST(readline_dir)
AC_SUBST(readline_link)
-@@ -2043,15 +2049,15 @@
- AC_DEFINE(HAVE_mit_thread)
- MT_INCLUDES="-I\$(top_srcdir)/mit-pthreads/include"
- AC_SUBST(MT_INCLUDES)
-- MT_LD_ADD="-L \$(top_srcdir)/mit-pthreads/obj/ -lpthread"
-+ MT_LD_ADD="\$(top_srcdir)/mit-pthreads/obj/libpthread.a"
- AC_SUBST(MT_LD_ADD)
-- LIBS="$MT_LD_ADD $LIBS"
- echo ""
- echo "Configuring MIT Pthreads"
- # We will never install so installation paths are not needed.
- (cd mit-pthreads; sh ./configure)
- echo "End of MIT Pthreads configuration"
- echo ""
-+ LIBS="$MT_LD_ADD $LIBS"
- fi
- fi
- AC_SUBST(sql_server_dirs)
diff --git a/databases/mysql-server/patches/patch-af b/databases/mysql-server/patches/patch-af
index b67a808ee4e..c10c33007f9 100644
--- a/databases/mysql-server/patches/patch-af
+++ b/databases/mysql-server/patches/patch-af
@@ -1,20 +1,8 @@
-$NetBSD: patch-af,v 1.6 2001/07/08 13:59:16 bad Exp $
+$NetBSD: patch-af,v 1.7 2001/10/08 17:24:17 veego Exp $
---- configure.orig Tue Jun 12 21:07:37 2001
-+++ configure Sat Jul 7 23:37:20 2001
-@@ -5065,7 +5065,10 @@
- #define HAVE_LIBWRAP 1
- EOF
-
-- WRAPLIBS="-L$with_libwrap/lib -lwrap"
-+ if test "$with_libwrap" != "yes"; then
-+ WRAPLIBS="-L${with_libwrap}/lib"
-+ fi
-+ WRAPLIBS="${WRAPLIBS} -lwrap"
- else
- echo "configure: failed program was:" >&5
- cat conftest.$ac_ext >&5
-@@ -9554,7 +9557,6 @@
+--- configure-orig Wed Oct 3 18:08:48 2001
++++ configure Sun Oct 7 19:58:54 2001
+@@ -9617,7 +9617,6 @@
else
bench_dirs=""
fi
@@ -22,7 +10,7 @@ $NetBSD: patch-af,v 1.6 2001/07/08 13:59:16 bad Exp $
# Don't build readline, i have it already
-@@ -9575,7 +9577,11 @@
+@@ -9638,7 +9637,11 @@
# This requires readline to be in a standard place. Mosty for linux
# there readline may be a shared library.
readline_dir=""
@@ -35,21 +23,3 @@ $NetBSD: patch-af,v 1.6 2001/07/08 13:59:16 bad Exp $
fi
-@@ -10745,15 +10751,15 @@
-
- MT_INCLUDES="-I\$(top_srcdir)/mit-pthreads/include"
-
-- MT_LD_ADD="-L \$(top_srcdir)/mit-pthreads/obj/ -lpthread"
-+ MT_LD_ADD="\$(top_srcdir)/mit-pthreads/obj/libpthread.a"
-
-- LIBS="$MT_LD_ADD $LIBS"
- echo ""
- echo "Configuring MIT Pthreads"
- # We will never install so installation paths are not needed.
- (cd mit-pthreads; sh ./configure)
- echo "End of MIT Pthreads configuration"
- echo ""
-+ LIBS="$MT_LD_ADD $LIBS"
- fi
- fi
-
diff --git a/databases/mysql-server/patches/patch-ag b/databases/mysql-server/patches/patch-ag
deleted file mode 100644
index 2461f6c65f7..00000000000
--- a/databases/mysql-server/patches/patch-ag
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ag,v 1.3 2001/07/08 13:59:16 bad Exp $
-
---- sql/Makefile.in.orig Tue Jun 12 21:16:58 2001
-+++ sql/Makefile.in Sat Jul 7 23:59:32 2001
-@@ -198,7 +198,7 @@
- gen_lex_hash_LDADD = $(LDADD) $(CXXLDFLAGS)
- mysqlbinlog_SOURCES = mysqlbinlog.cc mini_client.cc net_serv.cc mini_client_errors.c violite.c password.c
-
--mysqlbinlog_LDADD = $(LDADD) $(CXXLDFLAGS) $(mysqld_LDADD)
-+mysqlbinlog_LDADD = $(LDADD) $(CXXLDFLAGS
-
- DEFS = -DMYSQL_SERVER -DDEFAULT_MYSQL_HOME="\"$(MYSQLBASEdir)\"" -DDATADIR="\"$(MYSQLDATAdir)\"" -DSHAREDIR="\"$(MYSQLSHAREdir)\"" @DEFS@
-
diff --git a/databases/mysql-server/pkg/PLIST b/databases/mysql-server/pkg/PLIST
index 619afc9c9aa..5c91c7525bd 100644
--- a/databases/mysql-server/pkg/PLIST
+++ b/databases/mysql-server/pkg/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2001/05/02 08:22:31 jlam Exp $
+@comment $NetBSD: PLIST,v 1.6 2001/10/08 17:24:17 veego Exp $
bin/comp_err
bin/isamchk
bin/isamlog
@@ -7,7 +7,6 @@ bin/myisamchk
bin/myisamlog
bin/myisampack
bin/mysql_install_db
-bin/mysqlbinlog
bin/pack_isam
bin/perror
bin/replace
@@ -93,6 +92,9 @@ share/mysql/spanish/errmsg.sys
share/mysql/spanish/errmsg.txt
share/mysql/swedish/errmsg.sys
share/mysql/swedish/errmsg.txt
+share/mysql/ukrainian/errmsg.sys
+share/mysql/ukrainian/errmsg.txt
+@dirrm share/mysql/ukrainian
@dirrm share/mysql/swedish
@dirrm share/mysql/spanish
@dirrm share/mysql/slovak