mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 19:02:09 +00:00
lzmq: fix compilation with GCC14
Missing header. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=lzmq
|
||||
PKG_VERSION:=0.4.4
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
PKG_MAINTAINER:=Dirk Chang <dirk@kooiot.com>
|
||||
PKG_LICENSE:=MIT
|
||||
|
||||
|
||||
10
lang/lzmq/patches/010-gcc14.patch
Normal file
10
lang/lzmq/patches/010-gcc14.patch
Normal file
@@ -0,0 +1,10 @@
|
||||
--- a/src/lzmq.c
|
||||
+++ b/src/lzmq.c
|
||||
@@ -23,6 +23,7 @@
|
||||
#include <assert.h>
|
||||
#include "zsupport.h"
|
||||
#include <memory.h>
|
||||
+#include <stdlib.h>
|
||||
|
||||
#define LUAZMQ_MODULE_NAME "lzmq"
|
||||
#define LUAZMQ_MODULE_LICENSE "MIT"
|
||||
Reference in New Issue
Block a user