From 3bd85407abc9ed4434c2d3741f84fdb512638b1c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jan 2023 23:53:26 +0000 Subject: gentoo auto-resync : 14:01:2023 - 23:53:26 --- ...enssh-9.0_p1-implicit-func-decl-vsnprintf.patch | 32 ---------------------- 1 file changed, 32 deletions(-) delete mode 100644 net-misc/openssh/files/openssh-9.0_p1-implicit-func-decl-vsnprintf.patch (limited to 'net-misc/openssh/files/openssh-9.0_p1-implicit-func-decl-vsnprintf.patch') diff --git a/net-misc/openssh/files/openssh-9.0_p1-implicit-func-decl-vsnprintf.patch b/net-misc/openssh/files/openssh-9.0_p1-implicit-func-decl-vsnprintf.patch deleted file mode 100644 index c3a464eb3fe8..000000000000 --- a/net-misc/openssh/files/openssh-9.0_p1-implicit-func-decl-vsnprintf.patch +++ /dev/null @@ -1,32 +0,0 @@ -https://github.com/openssh/openssh-portable/pull/339 - -From a15d08a25f1ccc3ee803dfe790cc1f608651464c Mon Sep 17 00:00:00 2001 -From: Sam James -Date: Thu, 8 Sep 2022 02:49:29 +0100 -Subject: [PATCH] openbsd-compat/bsd-asprintf: add include for - vsnprintf - -Fixes the following build failure with Clang 15 on musl: -``` -bsd-asprintf.c:51:8: error: call to undeclared library function 'vsnprintf' with type 'int (char *, unsigned long, const char *, struct __va_list_tag *)'; ISO C99 and laterclang -O2 -pipe -fdiagnostics-color=always -frecord-gcc-switches -pipe -Wunknown-warning-option -Qunused-arguments -Wall -Wpointer-arith -Wuninitialized -Wsign-compare -Wformat-security -Wsizeof-pointer-memaccess -Wno-pointer-sign -Wno-unused-result -Wmisleading-indentation -Wbitwise-instead-of-logical -fno-strict-aliasing -mretpoline -ftrapv -fzero-call-used-regs=all -fno-builtin-memset -fstack-protector-strong -fPIE -I. -I. -D_XOPEN_SOURCE=600 -D_BSD_SOURCE -D_DEFAULT_SOURCE -DSSHDIR=\"/etc/ssh\" -D_PATH_SSH_PROGRAM=\"/usr/bin/ssh\" -D_PATH_SSH_ASKPASS_DEFAULT=\"/usr/lib/misc/ssh-askpass\" -D_PATH_SFTP_SERVER=\"/usr/lib/misc/sftp-server\" -D_PATH_SSH_KEY_SIGN=\"/usr/lib/misc/ssh-keysign\" -D_PATH_SSH_PKCS11_HELPER=\"/usr/lib/misc/ssh-pkcs11-helper\" -D_PATH_SSH_SK_HELPER=\"/usr/lib/misc/ssh-sk-helper\" -D_PATH_SSH_PIDDIR=\"/run\" -D_PATH_PRIVSEP_CHROOT_DIR=\"/var/empty\" -DHAVE_CONFIG_H -c cipher-aes.c -o cipher-aes.o - do not support - implicit function declarations [-Wimplicit-function-declaration] - ret = vsnprintf(string, INIT_SZ, fmt, ap2); - ^ -bsd-asprintf.c:51:8: note: include the header or explicitly provide a declaration for 'vsnprintf' -1 error generated. -``` - -See also: https://lists.mindrot.org/pipermail/openssh-unix-dev/2019-June/037811.html -See also: 73eb6cef41daba0359c1888e4756108d41b4e819 ---- a/openbsd-compat/bsd-asprintf.c -+++ b/openbsd-compat/bsd-asprintf.c -@@ -32,6 +32,7 @@ - - #include - #include -+#include - #include - - #define INIT_SZ 128 - -- cgit v1.2.3