From: Rosen Penev Date: Mon, 13 May 2024 03:44:01 +0000 (-0700) Subject: screen: fix compilation with GCC 14 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=289bc496ffec870156dca060838cb3666b09fc6c;p=feed%2Fpackages.git screen: fix compilation with GCC 14 Missing header. Signed-off-by: Rosen Penev --- diff --git a/utils/screen/Makefile b/utils/screen/Makefile index d28b69fa7d..6b6d27f5d5 100644 --- a/utils/screen/Makefile +++ b/utils/screen/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=screen PKG_VERSION:=4.9.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@GNU/screen diff --git a/utils/screen/patches/010-ptyh.patch b/utils/screen/patches/010-ptyh.patch new file mode 100644 index 0000000000..aad3580c11 --- /dev/null +++ b/utils/screen/patches/010-ptyh.patch @@ -0,0 +1,10 @@ +--- a/pty.c ++++ b/pty.c +@@ -30,6 +30,7 @@ + #include + #include + #include ++#include + + #if defined(__OpenBSD__) + #include /* for openpty() */