update eclass

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/mysql@1912 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one 2010-02-01 06:29:38 +00:00
parent 0c886627e9
commit 7326460e4f
1 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.127 2010/02/01 01:07:08 robbat2 Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.126 2010/01/31 05:47:21 robbat2 Exp $
# @ECLASS: mysql.eclass
# @MAINTAINER:
@ -475,7 +475,7 @@ configure_51() {
myconf="${myconf} --without-pstack"
use max-idx-128 && myconf="${myconf} --with-max-indexes=128"
# 5.1 introduces a new way to manage storage engines (#plugins)
# 5.1 introduces a new way to manage storage engines (plugins)
# like configuration=none
local plugins="csv,myisam,myisammrg,heap"
if use extraengine && ! use dynamicplugins ; then
@ -501,11 +501,11 @@ configure_51() {
for str in ${STORAGE_IUSE} ; do
if use ${str} ; then
# dotn confuse autoconf by specifiing the plugins to or more times
# don't confuse autoconf by specifying the plugins to or more times
if ! use dynamicplugins ; then
[[ -d storage/${str} ]] && plugins="${plugins},${str}"
fi
# suppres error message
# suppress error message
[[ ${str} = "innodb" ]] && str="innobase"
[[ ${str} = "xtradb" ]] && str="innobase"
[[ ! -d storage/${str} ]] && eerror "use ${str} but no ${str} plugin"