Summary: | dev-db/mysql-5.1.* changes SSL library defaults compared to 5.0.* | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Brian Evans (RETIRED) <grknight> |
Component: | [OLD] Server | Assignee: | Gentoo Linux MySQL bugs team <mysql-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | High | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
URL: | http://dev.mysql.com/doc/refman/5.1/en/upgrading-from-previous-series.html | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- |
Description
Brian Evans (RETIRED)
![]() Fixed in the eclass, not throwing out a new revision yet as I've got some other upcoming changes that will need one. Not fixed in the eclass.. The change was made to configure_40_41_50() which now lists: if mysql_version_is_at_least "5.1.11" ; then myconf="${myconf} $(use_with ssl /usr)" else myconf="${myconf} $(use_with ssl openssl)" fi However, this is never checked according to mysql_src_configure (lines 759-763) if mysql_version_is_at_least "5.1.10" ; then configure_51 else configure_40_41_50 fi The variable should be fixed in configure_51 instead, and possibly remove the confusing lines from configure_40_41_50. In addition.. $(use_with ssl /usr) becomes "--with-/usr" instead of "--with-ssl=/usr" when it is used by an ebuild (tested in personal overlay). Fixed better now. |