void-packages/srcpkgs/gatling/patches/gatling.c.patch
Colin Booth 858c80952a gatling: update to 0.16, fix lint
Gatling 0.16 grew a header dependency on capability.h. However, it
doesn't appear to actually use anything from libcap so until that
changes, patch gatling.c to use linux/capability.h (from
kernel-libc-headers) instead of sys/capability.h (from libcap-devel).
2021-04-06 09:54:09 -03:00

12 lines
338 B
Diff

# patch gatling.c to use capability headers from the kernel instead of libcap
--- gatling.c.orig 2021-04-04 21:51:17.641001871 +0000
+++ gatling.c 2021-04-04 21:51:49.798095616 +0000
@@ -62,7 +62,7 @@
#ifdef __linux__
#include <sys/auxv.h>
-#include <sys/capability.h>
+#include <linux/capability.h>
#endif
char serverroot[1024];