diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2010-03-03 23:57:13 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2010-03-03 23:57:13 +0000 |
commit | b7132876de9496f57fd2343ab3193b513d0f49fb (patch) | |
tree | 5c2a781cdb669616118840a4e4009f9a842d3c1e /eclass | |
parent | Version bump. Use python.eclass. (diff) | |
download | gentoo-2-b7132876de9496f57fd2343ab3193b513d0f49fb.tar.gz gentoo-2-b7132876de9496f57fd2343ab3193b513d0f49fb.tar.bz2 gentoo-2-b7132876de9496f57fd2343ab3193b513d0f49fb.zip |
Bug #307641: Fix accidental default SSL implementation change of OpenSSL->YaSSL back to OpenSSL.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mysql.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index cd7b9037c7a1..c6d7c88f040e 100644 --- a/eclass/mysql.eclass +++ b/eclass/mysql.eclass @@ -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.134 2010/02/27 18:21:35 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.135 2010/03/03 23:57:13 robbat2 Exp $ # @ECLASS: mysql.eclass # @MAINTAINER: @@ -407,7 +407,7 @@ configure_40_41_50() { fi if mysql_version_is_at_least "5.1.11" ; then - myconf="${myconf} $(use_with ssl)" + myconf="${myconf} $(use_with ssl /usr)" else myconf="${myconf} $(use_with ssl openssl)" fi |