diff options
author | Hanno Böck <hanno@gentoo.org> | 2009-11-19 20:59:38 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2009-11-19 20:59:38 +0000 |
commit | 55499db5ddf352c4ef916d1c371648d09bf2ed0e (patch) | |
tree | 105159b6c0c50c3b3f662b20bad23efc99afd49b /eclass | |
parent | Remove KDE 3.5.10 (diff) | |
download | gentoo-2-55499db5ddf352c4ef916d1c371648d09bf2ed0e.tar.gz gentoo-2-55499db5ddf352c4ef916d1c371648d09bf2ed0e.tar.bz2 gentoo-2-55499db5ddf352c4ef916d1c371648d09bf2ed0e.zip |
adjust mysql eclass for mysql 5.4
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mysql.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index dc50849d805f..96aaf9a10d33 100644 --- a/eclass/mysql.eclass +++ b/eclass/mysql.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.117 2009/11/19 18:22:44 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.118 2009/11/19 20:59:38 hanno Exp $ # Author: Francesco Riosa (Retired) <vivo@gentoo.org> # Maintainer: MySQL Team <mysql-bugs@gentoo.org> @@ -69,6 +69,8 @@ elif [ "${PV#5.0}" != "${PV}" ] && mysql_version_is_at_least "5.0.82"; then MYSQL_COMMUNITY_FEATURES=1 elif [ "${PV#5.1}" != "${PV}" ] && mysql_version_is_at_least "5.1.28"; then MYSQL_COMMUNITY_FEATURES=1 +elif [ "${PV#5.4}" != "${PV}" ]; then + MYSQL_COMMUNITY_FEATURES=1 else MYSQL_COMMUNITY_FEATURES=0 fi |