| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2006 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.60 2007/01/05 11:09:34 vivo Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.61 2007/01/05 22:41:49 vivo Exp $ |
| 4 | # kate: encoding utf-8; eol unix; |
4 | # kate: encoding utf-8; eol unix; |
| 5 | # kate: indent-width 4; mixedindent off; remove-trailing-space on; space-indent off; |
5 | # kate: indent-width 4; mixedindent off; remove-trailing-space on; space-indent off; |
| 6 | # kate: word-wrap-column 80; word-wrap off; |
6 | # kate: word-wrap-column 80; word-wrap off; |
| 7 | |
7 | |
| 8 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
8 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
| … | |
… | |
| 345 | |
345 | |
| 346 | if useq "ssl" ; then |
346 | if useq "ssl" ; then |
| 347 | # --with-vio is not needed anymore, it's on by default and |
347 | # --with-vio is not needed anymore, it's on by default and |
| 348 | # has been removed from configure |
348 | # has been removed from configure |
| 349 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
349 | mysql_version_is_at_least "5.0.4" || myconf="${myconf} --with-vio" |
| 350 | if mysql_version_is_at_least "5.0.6" ; then |
350 | if mysql_version_is_at_least "5.2.0" ; then |
| 351 | # myconf="${myconf} --with-yassl" |
|
|
| 352 | myconf="${myconf} --with-ssl" |
351 | myconf="${myconf} --with-ssl" |
| 353 | else |
352 | else |
| 354 | myconf="${myconf} --with-openssl" |
353 | myconf="${myconf} --with-openssl" |
| 355 | fi |
354 | fi |
| 356 | else |
355 | else |