1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 12:45:20 +03:00
aports/main/openssh/gss-serv.c.patch
Milan P. Stanić a750960397 main/openssh: upgrade to 8.9_p1
add patch to fix MAXHOSTNAMELEN in gss-serv.c
pick fix-ppc64le-build.patch from upstream to fix build on ppc64le
add autoconf and automake to to fix configure
2022-04-08 10:08:15 +00:00

15 lines
374 B
Diff

Author: Milan P. Stanić <mps@arvanta.net>
Date: Fri Mar 4 14:53:04 2022 +0000
include sys/param.h to fix missing #define MAXHOSTNAMELEN
--- a/gss-serv.c 2022-03-04 14:40:34.947952759 +0000
+++ b/gss-serv.c 2022-03-04 14:40:50.448023670 +0000
@@ -29,6 +29,7 @@
#ifdef GSSAPI
#include <sys/types.h>
+#include <sys/param.h>
#include <stdarg.h>
#include <string.h>