From: Rosen Penev Date: Tue, 7 Jan 2025 02:31:18 +0000 (-0800) Subject: opendkim: fix compilation with GCC14 X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=900f9442522681576167af8f729168e00e024de1;p=feed%2Fpackages.git opendkim: fix compilation with GCC14 Missing header. Signed-off-by: Rosen Penev --- diff --git a/mail/opendkim/Makefile b/mail/opendkim/Makefile index b25a955a97..02cd719807 100644 --- a/mail/opendkim/Makefile +++ b/mail/opendkim/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=opendkim PKG_VERSION:=2.10.3 -PKG_RELEASE:=6 +PKG_RELEASE:=7 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@SF/$(PKG_NAME) diff --git a/mail/opendkim/patches/030-gcc14.patch b/mail/opendkim/patches/030-gcc14.patch new file mode 100644 index 0000000000..3364d14934 --- /dev/null +++ b/mail/opendkim/patches/030-gcc14.patch @@ -0,0 +1,10 @@ +--- a/libopendkim/util.c ++++ b/libopendkim/util.c +@@ -22,6 +22,7 @@ + #include + #include + #include ++#include + + /* libopendkim includes */ + #include "dkim-internal.h"