elinks: switch to libressl.

This commit is contained in:
Juan RP 2014-07-14 16:55:50 +02:00
parent ecd1577dea
commit 1b3dee9ed5
2 changed files with 23 additions and 2 deletions

View file

@ -0,0 +1,21 @@
$OpenBSD: patch-src_network_ssl_ssl_c,v 1.2 2014/06/02 14:37:16 sthen Exp $
--- src/network/ssl/ssl.c.orig Mon Jun 2 12:54:40 2014
+++ src/network/ssl/ssl.c Mon Jun 2 12:55:46 2014
@@ -49,11 +49,16 @@ init_openssl(struct module *module)
* cannot initialize the PRNG and so every attempt to use SSL fails.
* It's actually an OpenSSL FAQ, and according to them, it's up to the
* application coders to seed the RNG. -- William Yodlowsky */
- if (RAND_egd(RAND_file_name(f_randfile, sizeof(f_randfile))) < 0) {
+ RAND_file_name(f_randfile, sizeof(f_randfile));
+#ifdef HAVE_RAND_EGD
+ if (RAND_egd(f_randfile) < 0) {
/* Not an EGD, so read and write to it */
+#endif
if (RAND_load_file(f_randfile, -1))
RAND_write_file(f_randfile);
+#ifdef HAVE_RAND_EGD
}
+#endif
SSLeay_add_ssl_algorithms();
context = SSL_CTX_new(SSLv23_client_method());

View file

@ -1,9 +1,9 @@
# Template file for 'elinks'
pkgname=elinks
version=0.12pre6
revision=4
revision=5
build_style=gnu-configure
makedepends="ncurses-devel openssl-devel"
makedepends="zlib-devel ncurses-devel libressl-devel"
short_desc="Full-Featured Text WWW Browser"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://elinks.or.cz"