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: Tue, 02 Feb 2010 02:46:59
Message-Id: E1Nc8n1-0001XK-HC@stork.gentoo.org
1 robbat2 10/02/02 02:46:55
2
3 Modified: mysql.eclass
4 Log:
5 Update the 5.1 plugins list for innodb_plugin, and do not build the example engines.
6
7 Revision Changes Path
8 1.129 eclass/mysql.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mysql.eclass?rev=1.129&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mysql.eclass?rev=1.129&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mysql.eclass?r1=1.128&r2=1.129
13
14 Index: mysql.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v
17 retrieving revision 1.128
18 retrieving revision 1.129
19 diff -p -w -b -B -u -u -r1.128 -r1.129
20 --- mysql.eclass 1 Feb 2010 19:16:06 -0000 1.128
21 +++ mysql.eclass 2 Feb 2010 02:46:52 -0000 1.129
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.128 2010/02/01 19:16:06 hanno Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.129 2010/02/02 02:46:52 robbat2 Exp $
27
28 # @ECLASS: mysql.eclass
29 # @MAINTAINER:
30 @@ -489,14 +489,16 @@ configure_51() {
31 local plugins="csv,myisam,myisammrg,heap"
32 if use extraengine ; then
33 # like configuration=max-no-ndb, archive and example removed in 5.1.11
34 - plugins="${plugins},archive,blackhole,example,federated,partition"
35 + # not added yet: ibmdb2i
36 + # Not supporting as examples: example,daemon_example,ftexample
37 + plugins="${plugins},archive,blackhole,federated,partition"
38
39 elog "Before using the Federated storage engine, please be sure to read"
40 elog "http://dev.mysql.com/doc/refman/5.1/en/federated-limitations.html"
41 fi
42
43 # Upstream specifically requests that InnoDB always be built.
44 - plugins="${plugins},innobase"
45 + plugins="${plugins},innobase,innodb_plugin"
46
47 # like configuration=max-no-ndb
48 if use cluster ; then