diff options
| author | mark.yang <mark.yang@lge.com> | 2025-04-17 10:53:43 +0900 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-04-19 14:36:04 -0700 |
| commit | a8b8eaa85b4630f63f53c4b905c68773f4a852a0 (patch) | |
| tree | 533b652f510d65d28cd5d578e9123b4d77b4b9bc /meta-networking/recipes-support/netcat/netcat-openbsd/0001-fix-netcat-openbsd-ftbfs-with-GCC-15.patch | |
| parent | e81fefb0efb753d25f7c2716a52a73971f4b904b (diff) | |
| download | meta-openembedded-a8b8eaa85b4630f63f53c4b905c68773f4a852a0.tar.gz | |
netcat-openbsd: fix build error with gcc-15
* submit fix:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097448
to fix:
netcat.c:1443:41: error: passing argument 2 of 'signal' from incompatible pointer type [-Wincompatible-pointer-types]
1443 | signal(SIGALRM, quit);
| ^~~~
| |
| void (*)(void)
In file included from netcat.c:100:
TOPDIR/tmp/work/core2-64-oe-linux/netcat-openbsd/1.195/recipe-sysroot/usr/include/signal.h:88:57: note: expected '__sighandler_t' {aka 'void (*)(int)'} but argument is of type 'void (*)(void)'
88 | extern __sighandler_t signal (int __sig, __sighandler_t __handler)
| ~~~~~~~~~~~~~~~^~~~~~~~~
netcat.c:241:13: note: 'quit' declared here
241 | static void quit();
| ^~~~
TOPDIR/tmp/work/core2-64-oe-linux/netcat-openbsd/1.195/recipe-sysroot/usr/include/signal.h:72:16: note: '__sighandler_t' declared here
72 | typedef void (*__sighandler_t) (int);
| ^~~~~~~~~~~~~~
make: *** [Makefile:17: netcat.o] Error 1
Signed-off-by: mark.yang <mark.yang@lge.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-support/netcat/netcat-openbsd/0001-fix-netcat-openbsd-ftbfs-with-GCC-15.patch')
| -rw-r--r-- | meta-networking/recipes-support/netcat/netcat-openbsd/0001-fix-netcat-openbsd-ftbfs-with-GCC-15.patch | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/netcat/netcat-openbsd/0001-fix-netcat-openbsd-ftbfs-with-GCC-15.patch b/meta-networking/recipes-support/netcat/netcat-openbsd/0001-fix-netcat-openbsd-ftbfs-with-GCC-15.patch new file mode 100644 index 0000000000..c1757d39ad --- /dev/null +++ b/meta-networking/recipes-support/netcat/netcat-openbsd/0001-fix-netcat-openbsd-ftbfs-with-GCC-15.patch | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | From 4ca437b129252635e89694446945e69912300ceb Mon Sep 17 00:00:00 2001 | ||
| 2 | From: "mark.yang" <mark.yang@lge.com> | ||
| 3 | Date: Wed, 16 Apr 2025 20:35:46 +0900 | ||
| 4 | Subject: [PATCH] fix netcat-openbsd: ftbfs with GCC-15 | ||
| 5 | |||
| 6 | * fix build failure with GCC-15 | ||
| 7 | netcat.c:1443:41: error: passing argument 2 of 'signal' from incompatible pointer type [-Wincompatible-pointer-types] | ||
| 8 | 1443 | signal(SIGALRM, quit); | ||
| 9 | | ^~~~ | ||
| 10 | | | | ||
| 11 | | void (*)(void) | ||
| 12 | In file included from netcat.c:100: | ||
| 13 | TOPDIR/tmp/work/core2-64-oe-linux/netcat-openbsd/1.195/recipe-sysroot/usr/include/signal.h:88:57: note: expected '__sighandler_t' {aka 'void (*)(int)'} but argument is of type 'void (*)(void)' | ||
| 14 | 88 | extern __sighandler_t signal (int __sig, __sighandler_t __handler) | ||
| 15 | | ~~~~~~~~~~~~~~~^~~~~~~~~ | ||
| 16 | netcat.c:241:13: note: 'quit' declared here | ||
| 17 | 241 | static void quit(); | ||
| 18 | | ^~~~ | ||
| 19 | TOPDIR/tmp/work/core2-64-oe-linux/netcat-openbsd/1.195/recipe-sysroot/usr/include/signal.h:72:16: note: '__sighandler_t' declared here | ||
| 20 | 72 | typedef void (*__sighandler_t) (int); | ||
| 21 | | ^~~~~~~~~~~~~~ | ||
| 22 | make: *** [Makefile:17: netcat.o] Error 1 | ||
| 23 | |||
| 24 | Upstream-Status: Submitted [https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097448] | ||
| 25 | Signed-off-by: mark.yang <mark.yang@lge.com> | ||
| 26 | --- | ||
| 27 | netcat.c | 4 ++-- | ||
| 28 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
| 29 | |||
| 30 | diff --git a/netcat.c b/netcat.c | ||
| 31 | index d70598a..b8ba959 100644 | ||
| 32 | --- a/netcat.c | ||
| 33 | +++ b/netcat.c | ||
| 34 | @@ -238,7 +238,7 @@ char *proto_name(int uflag, int dccpflag); | ||
| 35 | static int connect_with_timeout(int fd, const struct sockaddr *sa, | ||
| 36 | socklen_t salen, int ctimeout); | ||
| 37 | |||
| 38 | -static void quit(); | ||
| 39 | +static void quit(int sig); | ||
| 40 | |||
| 41 | int b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize); | ||
| 42 | int b64_pton(char const *src, u_char *target, size_t targsize); | ||
| 43 | @@ -2235,7 +2235,7 @@ usage(int ret) | ||
| 44 | * quit() | ||
| 45 | * handler for a "-q" timeout (exit 0 instead of 1) | ||
| 46 | */ | ||
| 47 | -static void quit() | ||
| 48 | +static void quit(__attribute__((unused)) int sig) | ||
| 49 | { | ||
| 50 | exit(0); | ||
| 51 | } | ||
