This website works better with JavaScript.
Home
Help
Sign In
LILiK
/
openwrt-packages-dist
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
conserver: Fix compilation without deprecated OpenSSL 1.0.2 APIs
Two headers were missing. Signed-off-by: Rosen Penev <rosenp@gmail.com>
lilik-openwrt-22.03
Rosen Penev
6 years ago
parent
5bae7c73a7
commit
8c73cc5b0e
2 changed files
with
12 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
net/conserver/Makefile
+11
-0
net/conserver/patches/010-openssl-deprecated.patch
+ 1
- 1
net/conserver/Makefile
View File
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME
:=
conserver
PKG_NAME
:=
conserver
PKG_VERSION
:=
8.2.2
PKG_VERSION
:=
8.2.2
PKG_RELEASE
:=
1
PKG_RELEASE
:=
2
PKG_MAINTAINER
:=
Bjørn Mork <bjorn@mork.no>
PKG_MAINTAINER
:=
Bjørn Mork <bjorn@mork.no>
PKG_SOURCE_PROTO
:=
git
PKG_SOURCE_PROTO
:=
git
+ 11
- 0
net/conserver/patches/010-openssl-deprecated.patch
View File
@ -0,0 +1,11 @@
--- a/conserver/cutil.h
+++ b/conserver/cutil.h
@@ -7,6 +7,8 @@
#include <stdarg.h>
#if HAVE_OPENSSL
# include <openssl/ssl.h>
+# include <openssl/bn.h>
+# include <openssl/dh.h>
# include <openssl/err.h>
# if OPENSSL_VERSION_NUMBER < 0x10100000L
# define TLS_method SSLv23_method
Write
Preview
Loading…
Cancel
Save