mirror of
https://github.com/openwrt/packages.git
synced 2025-12-10 12:41:22 +00:00
remserial: fix compilation with GCC14
Missing function declaration. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
@@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=remserial
|
||||
PKG_VERSION:=1.4
|
||||
PKG_RELEASE:=2
|
||||
PKG_RELEASE:=3
|
||||
PKG_LICENSE:=GPL-2.0-or-later
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
|
||||
10
net/remserial/patches/010-gcc14.patch
Normal file
10
net/remserial/patches/010-gcc14.patch
Normal file
@@ -0,0 +1,10 @@
|
||||
--- a/remserial.c
|
||||
+++ b/remserial.c
|
||||
@@ -54,6 +54,7 @@ void sighandler(int sig);
|
||||
int connect_to(struct sockaddr_in *addr);
|
||||
void usage(char *progname);
|
||||
void link_slave(int fd);
|
||||
+void set_tty(int fd,char *settings);
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
Reference in New Issue
Block a user