wifidog: fix compilation with more recent wolfssl 20357/head
authorRosen Penev <rosenp@gmail.com>
Sat, 21 Jan 2023 19:09:37 +0000 (21:09 +0200)
committerHannu Nyman <hannu.nyman@iki.fi>
Sat, 21 Jan 2023 19:09:37 +0000 (21:09 +0200)
Needs an extra header. pthread.h is also no longer implicitly included.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 4605f98b413b4b0433199e4fe6d3685344cbf933)

net/wifidog/Makefile
net/wifidog/patches/030-wolfssl-options.patch [new file with mode: 0644]

index 900d8a6482185c900976b0ae8448e354591ee55f..28af32498b4be85163704636b5603dff6bcce4c8 100644 (file)
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=wifidog
 PKG_VERSION:=1.3.0
-PKG_RELEASE:=7
+PKG_RELEASE:=8
 
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_URL:=https://github.com/wifidog/wifidog-gateway
diff --git a/net/wifidog/patches/030-wolfssl-options.patch b/net/wifidog/patches/030-wolfssl-options.patch
new file mode 100644 (file)
index 0000000..3be051a
--- /dev/null
@@ -0,0 +1,18 @@
+--- a/src/simple_http.c
++++ b/src/simple_http.c
+@@ -28,6 +28,7 @@
+ #include <arpa/inet.h>
+ #include <errno.h>
+ #include <unistd.h>
++#include <pthread.h>
+ #include <string.h>
+ #include <syslog.h>
+@@ -37,6 +38,7 @@
+ #include "pstring.h"
+ #ifdef USE_CYASSL
++#include <cyassl/options.h>
+ #include <cyassl/ssl.h>
+ #include "conf.h"
+ /* For CYASSL_MAX_ERROR_SZ */