summaryrefslogtreecommitdiff
path: root/net-nds/gssproxy/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-02-02 01:39:05 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-02-02 01:39:05 +0000
commitfcc5224904648a8e6eb528d7603154160a20022f (patch)
tree3bfce096b38a9cea8eed13fc70c1526c456e9abd /net-nds/gssproxy/files
parent2fd57282f0262ca084e05b0f2c63fbada395d02b (diff)
gentoo resync : 02.02.2022
Diffstat (limited to 'net-nds/gssproxy/files')
-rw-r--r--net-nds/gssproxy/files/gssproxy-0.8.4-include.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/net-nds/gssproxy/files/gssproxy-0.8.4-include.patch b/net-nds/gssproxy/files/gssproxy-0.8.4-include.patch
new file mode 100644
index 000000000000..1f85329c237e
--- /dev/null
+++ b/net-nds/gssproxy/files/gssproxy-0.8.4-include.patch
@@ -0,0 +1,24 @@
+From 57f951d1e32739ddfd0d924df81da010e47d35b9 Mon Sep 17 00:00:00 2001
+From: David Seifert <soap@gentoo.org>
+Date: Sun, 23 Jan 2022 19:09:25 +0100
+Subject: [PATCH] Add missing #include for musl
+
+Bug: https://bugs.gentoo.org/719920
+
+Signed-off-by: David Seifert <soap@gentoo.org>
+---
+ src/gp_socket.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/gp_socket.c b/src/gp_socket.c
+index 9070928..493399a 100644
+--- a/src/gp_socket.c
++++ b/src/gp_socket.c
+@@ -10,6 +10,7 @@
+ #include <fcntl.h>
+ #include <netinet/in.h>
+ #include <stdlib.h>
++#include <string.h>
+ #include <sys/socket.h>
+ #include <sys/stat.h>
+ #include <sys/types.h>