Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: mysql.eclass
Date: Thu, 28 Oct 2010 20:46:18
Message-Id: 20101028204611.8437620051@flycatcher.gentoo.org
1 robbat2 10/10/28 20:46:11
2
3 Modified: mysql.eclass
4 Log:
5 Bug #336027: max-idx-128 broken by upstream presently, prevent it from corrupting user data.
6
7 Revision Changes Path
8 1.154 eclass/mysql.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/mysql.eclass?rev=1.154&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/mysql.eclass?rev=1.154&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/mysql.eclass?r1=1.153&r2=1.154
13
14 Index: mysql.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v
17 retrieving revision 1.153
18 retrieving revision 1.154
19 diff -p -w -b -B -u -u -r1.153 -r1.154
20 --- mysql.eclass 27 Oct 2010 07:19:24 -0000 1.153
21 +++ mysql.eclass 28 Oct 2010 20:46:11 -0000 1.154
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2009 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.153 2010/10/27 07:19:24 robbat2 Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.154 2010/10/28 20:46:11 robbat2 Exp $
27
28 # @ECLASS: mysql.eclass
29 # @MAINTAINER:
30 @@ -573,7 +573,10 @@ configure_51() {
31 myconf="${myconf} --without-pstack"
32 myconf="${myconf} --with-plugindir=/usr/$(get_libdir)/mysql/plugin"
33
34 - use max-idx-128 && myconf="${myconf} --with-max-indexes=128"
35 + # This is an explict die here, because if we just forcibly disable it, then the
36 + # user's data is not accessible.
37 + use max-idx-128 && die "Bug #336027: upstream has a corruption issue with max-idx-128 presently"
38 + #use max-idx-128 && myconf="${myconf} --with-max-indexes=128"
39 if [ "${MYSQL_COMMUNITY_FEATURES}" == "1" ]; then
40 myconf="${myconf} $(use_enable community community-features)"
41 if use community; then