The crude loop I wrote to come up with this changeset:
find -L package/feeds/packages/ -name patches | \
sed 's/patches$/refresh/' | sort | xargs make
Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
(cherry picked from commit 5d8d4fbbcb
)
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
24 lines
591 B
Diff
24 lines
591 B
Diff
From 3aa079c4885d89257c5033b4992011511b603150 Mon Sep 17 00:00:00 2001
|
|
From: Rosen Penev <rosenp@gmail.com>
|
|
Date: Tue, 26 Jun 2018 14:14:34 -0700
|
|
Subject: [PATCH] Fix compile with OpenSSL 1.1.0
|
|
|
|
OpenSSL 1.1.0 deprecared SSL_library_init and SSL_load_error_strings.
|
|
They're part of OPENSSL_init_ssl now.
|
|
---
|
|
fdm.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/fdm.c
|
|
+++ b/fdm.c
|
|
@@ -717,8 +717,10 @@ retry:
|
|
}
|
|
conf.lock_file = lock;
|
|
|
|
+#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
|
SSL_library_init();
|
|
SSL_load_error_strings();
|
|
+#endif
|
|
|
|
/* Filter account list. */
|
|
TAILQ_INIT(&actaq);
|