mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 12:45:20 +03:00
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
15 lines
374 B
Diff
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>
|