diff options
author | Nuno Teixeira <eduardo@FreeBSD.org> | 2025-07-12 11:05:38 +0100 |
---|---|---|
committer | Nuno Teixeira <eduardo@FreeBSD.org> | 2025-07-12 11:19:24 +0100 |
commit | cf7638ce9d71b857f12bdc87b768cc2466d849d4 (patch) | |
tree | af82d6d9021e0e3e826f7b20f6872f3188581188 /devel/libev/files/patch-Makefile.in | |
parent | security/vuxml: extend libxml2/libxslt vuln to linux-* ports (diff) |
devel/libev: Unbreak current after inotify add
After inotify was added to main, if condition bellow leads to build error
related to missing (linux) statfs.h header.
Fix it by adjusting correct headers:
#if EV_USE_INOTIFY
-# include <sys/statfs.h>
+# include <sys/mount.h>
# include <sys/inotify.h>
While here, refresh patches.
Approved by: portmgr (blanket, build fix)
Sugested by: markj
See also; https://lists.freebsd.org/archives/dev-commits-src-all/2025-July/057269.html
Diffstat (limited to 'devel/libev/files/patch-Makefile.in')
-rw-r--r-- | devel/libev/files/patch-Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/libev/files/patch-Makefile.in b/devel/libev/files/patch-Makefile.in index 5f6ab0fc3b55..509149e2548b 100644 --- a/devel/libev/files/patch-Makefile.in +++ b/devel/libev/files/patch-Makefile.in @@ -1,6 +1,6 @@ ---- Makefile.in.orig 2015-12-20 21:12:45 UTC +--- Makefile.in.orig 2020-03-18 12:27:30 UTC +++ Makefile.in -@@ -343,7 +343,7 @@ EXTRA_DIST = LICENSE Changes libev.m4 au +@@ -357,7 +357,7 @@ man_MANS = ev.3 ev.3 ev.pod Symbols.ev Symbols.event man_MANS = ev.3 |