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, 13 May 2010 19:45:50
Message-Id: 20100513194547.CAB902C4F8@corvid.gentoo.org
1 robbat2 10/05/13 19:45:47
2
3 Modified: mysql.eclass
4 Log:
5 Bug #318851: USE=cluster also needs the partition engine support in 5.1.46.
6
7 Revision Changes Path
8 1.146 eclass/mysql.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/mysql.eclass?rev=1.146&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/mysql.eclass?rev=1.146&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/mysql.eclass?r1=1.145&r2=1.146
13
14 Index: mysql.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v
17 retrieving revision 1.145
18 retrieving revision 1.146
19 diff -p -w -b -B -u -u -r1.145 -r1.146
20 --- mysql.eclass 27 Apr 2010 05:45:55 -0000 1.145
21 +++ mysql.eclass 13 May 2010 19:45:47 -0000 1.146
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.145 2010/04/27 05:45:55 robbat2 Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.146 2010/05/13 19:45:47 robbat2 Exp $
27
28 # @ECLASS: mysql.eclass
29 # @MAINTAINER:
30 @@ -614,7 +614,8 @@ configure_51() {
31
32 # like configuration=max-no-ndb
33 if use cluster ; then
34 - plugins_sta="${plugins_sta} ndbcluster"
35 + plugins_sta="${plugins_sta} ndbcluster partition"
36 + plugins_dis="${plugins_dis//partition}"
37 myconf="${myconf} --with-ndb-binlog"
38 else
39 plugins_dis="${plugins_dis} ndbcluster"
40 @@ -623,7 +624,7 @@ configure_51() {
41 if [[ "${PN}" == "mariadb" ]] ; then
42 # In MariaDB, InnoDB is packaged in the xtradb directory, so it's not
43 # caught above.
44 - plugins_sta="${plugins_sta},maria,innobase"
45 + plugins_sta="${plugins_sta} maria innobase"
46 myconf="${myconf} $(use_with libevent)"
47 # This is not optional, without it several upstream testcases fail.
48 # Also strongly recommended by upstream.