packages/net/mosquitto/patches/901-fix-openssl-ui.patch
Karl Palsson 762778b36e mosquitto: major upgrade to 1.6.x
Major new release of mosquitto.

This release rolls up the initial 1.6.0 release, plus the subsequent
build/bug fixes of 1.6.1 and 1.6.2.

Original upstream changelogs:
https://mosquitto.org/blog/2019/04/version-1-6-released/
https://mosquitto.org/blog/2019/04/version-1-6-1-released/
https://mosquitto.org/blog/2019/04/version-1-6-2-released/

Major features of interest:
* MQTTv5 support
* performance improvements
* ALPN support
* OCSP staping support
* OpenSSL Engine support
* TLSv1.0 support dropped

Currently adds two patches to continue supporting OpenSSL engine support
being disabled, and a missing header include.  These are both tracked
upstream and are expected to be dropped in a subsequent release.

Signed-off-by: Karl Palsson <karlp@etactica.com>
2019-05-15 17:28:25 +00:00

12 lines
289 B
Diff

diff --git a/lib/net_mosq.c b/lib/net_mosq.c
index 745b170..bdcaa19 100644
--- a/lib/net_mosq.c
+++ b/lib/net_mosq.c
@@ -50,6 +50,7 @@ Contributors:
#include <openssl/conf.h>
#include <openssl/engine.h>
#include <openssl/err.h>
+#include <openssl/ui.h>
#include <tls_mosq.h>
#endif