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 | b7fd37bfe37855f85d4d28ee04ebbf48e04fc10a (patch) | |
tree | 45902dfbe830f973c2cd5faabe02614a2b9650f2 /eclass | |
parent | Stable for HPPA (bug #246219). (diff) | |
download | historical-b7fd37bfe37855f85d4d28ee04ebbf48e04fc10a.tar.gz historical-b7fd37bfe37855f85d4d28ee04ebbf48e04fc10a.tar.bz2 historical-b7fd37bfe37855f85d4d28ee04ebbf48e04fc10a.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" |