You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/www-servers/moonbridge/files/moonbridge-1.0.1-fcntl.patch

15 lines
376 B

#It is explicitely required to include fcntl.h in musl.
#Else we get F_SETFD, FD_CLOEXEC undefined errors.
#
#Closes: https://bugs.gentoo.org/828671
--- a/moonbridge.c
+++ b/moonbridge.c
@@ -36,6 +36,7 @@
#include <getopt.h>
#include <sys/file.h>
#include <syslog.h>
+#include <fcntl.h>
#if defined(__FreeBSD__) || __has_include(<libutil.h>)
#include <libutil.h>
#endif