diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-11-14 04:48:28 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-11-14 04:48:28 +0000 |
commit | 63f00b05b6910c3272c7a82956a32be025c39fd6 (patch) | |
tree | 75054549df901df8bb0be27655fa4ef1e0fdfedb /eclass | |
parent | Stable for HPPA (bug #246219). (diff) | |
download | gentoo-2-63f00b05b6910c3272c7a82956a32be025c39fd6.tar.gz gentoo-2-63f00b05b6910c3272c7a82956a32be025c39fd6.tar.bz2 gentoo-2-63f00b05b6910c3272c7a82956a32be025c39fd6.zip |
Bug #187642 - community-specific features.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mysql.eclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index f66326d3e33c..58e131d92741 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.98 2008/11/14 01:46:24 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.99 2008/11/14 04:48:28 robbat2 Exp $ # Author: Francesco Riosa (Retired) <vivo@gentoo.org> # Maintainer: MySQL Team <mysql-bugs@gentoo.org> @@ -399,6 +399,10 @@ configure_40_41_50() { fi fi + if [ "${PN}" == "mysql-community" ]; then + myconf="${myconf} --enable-community-features" + fi + mysql_version_is_at_least "5.0.18" \ && use max-idx-128 \ && myconf="${myconf} --with-max-indexes=128" |