diff options
author | adam <adam@pkgsrc.org> | 2013-07-31 18:51:41 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2013-07-31 18:51:41 +0000 |
commit | e4e8b6d57a5e4d5b6c965e0830670cca0d200d8a (patch) | |
tree | 84fcfc2b2b680660e0eb693afa2cb71ee87a3e81 /databases/mysql55-server | |
parent | a7e29019a85cce153f67eecf2725c0d55a1888ed (diff) | |
download | pkgsrc-e4e8b6d57a5e4d5b6c965e0830670cca0d200d8a.tar.gz |
Changes 5.5.33:
* Previously, program options could be specified in full or as any unambiguous prefix. For example, the --compress option could be given to mysqldump as --compr, but not as --comp because the latter is ambiguous. Option prefixes now are deprecated. They can cause problems when new options are implemented for programs. A prefix that is currently unambiguous might become ambiguous in the future. If an unambiguous prefix is given, a warning now occurs to provide feedback. For example:
Warning: Using unique option prefix compr instead of compress is
deprecated and will be removed in a future release. Please use the
full name instead.
Option prefixes are no longer supported in MySQL 5.7; only full options are accepted.
* comp_err now checks to make sure that new errors are not being added to MySQL 5.1 or 5.5 because the set of errors for these series is frozen.
* Bugs Fixed
Diffstat (limited to 'databases/mysql55-server')
-rw-r--r-- | databases/mysql55-server/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/databases/mysql55-server/Makefile b/databases/mysql55-server/Makefile index ba0249849a8..03a38aaeb8a 100644 --- a/databases/mysql55-server/Makefile +++ b/databases/mysql55-server/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2013/07/17 21:22:40 adam Exp $ +# $NetBSD: Makefile,v 1.15 2013/07/31 18:51:41 adam Exp $ PKGNAME= ${DISTNAME:S/-/-server-/} -PKGREVISION= 2 SVR4_PKGNAME= mysqs COMMENT= MySQL 5, a free SQL database (server) |