diff options
author | bad <bad@pkgsrc.org> | 2001-03-26 13:26:42 +0000 |
---|---|---|
committer | bad <bad@pkgsrc.org> | 2001-03-26 13:26:42 +0000 |
commit | 1a3415e0e1d544f1acda54e263d9e86b29a0d9fb (patch) | |
tree | 31d7af40ebbc33584176625197ca1815ae5d2fc2 /databases/mysql-client/Makefile | |
parent | 8a200bdfe150dc6891663c56336a616c1e13d6d7 (diff) | |
download | pkgsrc-1a3415e0e1d544f1acda54e263d9e86b29a0d9fb.tar.gz |
Update to mysql-3.23.35. Changes in the client library include
API/ABI changes, (backward compatible) changes to the client-server
protocol and bug fixes.
The 3.23 release has several major features that are not present
in previous versions. We have added new table types: MyISAM, a new
ISAM library which is tuned for SQL and supports large files; BDB,
which uses the Berkeley DB library from Sleepycat Software to
implement transaction-safe tables; INNOBASE, which uses the Innobase
database backend to implement transaction-safe tables. The 3.23
release also includes support for database replication between a
master and many slaves, full-text indexing, and much more.
For a detailed list of changes see appendix E of the online
documentation at http://www.mysql.com/.
The replication code and BerkeleyDB code is still not as tested
and as the rest of the code, so we will probably need to do a couple
of future releases of 3.23 with small fixes for this part of the
code. As long as you don't use these features, you should be quite
safe with MySQL 3.23!
Note that the above doesn't mean that replication or Berkeley DB
doesn't work; We have done a lot of testing of all code, including
replication and BDB without finding any problems. It only means
that not as many users uses this code as the rest of the code and
because of this we are not yet 100 % confident in this code.
Diffstat (limited to 'databases/mysql-client/Makefile')
-rw-r--r-- | databases/mysql-client/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/databases/mysql-client/Makefile b/databases/mysql-client/Makefile index 0671fe99ebc..c71bdc942a9 100644 --- a/databases/mysql-client/Makefile +++ b/databases/mysql-client/Makefile @@ -1,20 +1,16 @@ -# $NetBSD: Makefile,v 1.12 2001/02/16 14:17:28 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2001/03/26 13:26:42 bad Exp $ # -DISTNAME= mysql-3.22.32 +DISTNAME= mysql-3.23.35 PKGNAME= ${DISTNAME:S/-/-client-/} CATEGORIES= databases -MASTER_SITES= ftp://ftp.mysql.com/MySQL-3.22/ \ - ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.22/ +MASTER_SITES= ftp://ftp.mysql.com/MySQL-3.23/ \ + ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.23/ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.mysql.com/ COMMENT= MySQL, a free SQL database (client) -RESTRICTED= "Restrictive license." -NO_SRC_ON_CDROM= ${RESTRICTED} -NO_BIN_ON_CDROM= ${RESTRICTED} - GNU_CONFIGURE= yes CONFIGURE_ARGS+=--without-perl --without-debug --without-bench \ --without-server --with-named-curses-libs="-lcurses -ltermcap" @@ -27,6 +23,7 @@ CFLAGS+= -Dunix USE_PERL5= yes USE_LIBTOOL= yes +LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig INFO_FILES= mysql.info |