summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrahmajit Das <brahmajit.xyz@gmail.com>2023-05-28 14:02:44 +0000
committerJoonas Niilola <juippis@gentoo.org>2023-05-29 14:54:24 +0300
commit595eb68d7d7d5098a4437bf23278052de3aa2f71 (patch)
tree8d65de94dba70d8c0347b9b65f850ff2bbbcb688 /x11-misc/xdock/files
parentmedia-libs/portmidi: Stabilize 2.0.4 sparc, #907346 (diff)
downloadgentoo-595eb68d7d7d5098a4437bf23278052de3aa2f71.tar.gz
gentoo-595eb68d7d7d5098a4437bf23278052de3aa2f71.tar.bz2
gentoo-595eb68d7d7d5098a4437bf23278052de3aa2f71.zip
x11-misc/xdock: Fix memset and memcpy undeclared
Closes: https://bugs.gentoo.org/898894 Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/31202 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'x11-misc/xdock/files')
-rw-r--r--x11-misc/xdock/files/xdock-0.3.0-clang16-memcpy.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-misc/xdock/files/xdock-0.3.0-clang16-memcpy.patch b/x11-misc/xdock/files/xdock-0.3.0-clang16-memcpy.patch
new file mode 100644
index 000000000000..a4cd766c06e7
--- /dev/null
+++ b/x11-misc/xdock/files/xdock-0.3.0-clang16-memcpy.patch
@@ -0,0 +1,11 @@
+#Bug https://bugs.gentoo.org/898894
+--- a/src/lib/network.c
++++ b/src/lib/network.c
+@@ -16,6 +16,7 @@
+ #include <stdarg.h>
+ #include <stdlib.h>
+ #include <errno.h>
++#include <string.h>
+
+ int net_connect(char* host, int port)
+ {