diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2025-07-20 03:06:00 +0200 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2025-07-20 03:11:43 +0200 |
commit | 4d2e05dbb5a105e5b06709c52d3ced1ed2c2c7cd (patch) | |
tree | 5a7bd538713dec84a70c3d0dcf3d9b4fa5d64838 | |
parent | devel/protoc-gen-go-grpc: Update version 1.74.0=>1.74.1 (diff) |
x11/way-displays: unbreak on -CURRENT after e8fe34cde858
Add -isystem to hide warnings in headers unintentionally exposed via symlink.
In file included from src/fds.c:6:
/usr/local/include/sys/inotify.h:21:13: error: zero size arrays are an extension [-Werror,-Wzero-length-array]
21 | char name[0];
| ^
PR: 288342
Reported by: pkg-fallout
-rw-r--r-- | x11/way-displays/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11/way-displays/Makefile b/x11/way-displays/Makefile index 8607b935ee34..09620637d470 100644 --- a/x11/way-displays/Makefile +++ b/x11/way-displays/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libepoll-shim.so:devel/libepoll-shim \ libinput.so:x11/libinput TEST_DEPENDS= cmocka>0:sysutils/cmocka -USES= compiler:c11 gmake pkgconfig +USES= compiler:c11 gmake localbase pkgconfig USE_GITHUB= yes GH_ACCOUNT= alex-courtis MAKEFILE= GNUmakefile |