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/app-admin/fam/files/fam-2.7.0-sysmacros.patch

16 lines
343 B

https://bugs.gentoo.org/580702
fix build with newer glibc where sys/sysmacros.h isn't implicitly included
by sys/types.h
--- a/src/DNotify.c++
+++ b/src/DNotify.c++
@@ -32,6 +32,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
+#include <sys/sysmacros.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <libgen.h>