ports/www/links1/files/patch-https.c
Bernard Spil 291c4b0716 www/links1: Fix building without RAND_egd
- Move from USE_OPENSSL to USES=ssl

PR:		210727
Submitted by:	Tobias Kortkamp <t@tobik.me>
2016-07-02 10:16:14 +00:00

14 lines
403 B
C

--- https.c.orig 2006-09-11 02:09:24 UTC
+++ https.c
@@ -33,7 +33,10 @@ SSL *getSSL(void)
char f_randfile[PATH_MAX];
const char *f = RAND_file_name(f_randfile, sizeof(f_randfile));
- if (f && RAND_egd(f)<0) {
+#ifndef OPENSSL_NO_EGD
+ if (f && RAND_egd(f)<0)
+#endif
+ {
/* Not an EGD, so read and write to it */
if (RAND_load_file(f_randfile, -1))
RAND_write_file(f_randfile);