Date: Sat, 22 Nov 2025 16:05:08 +0000 From: Robert Clausecker <fuz@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org Subject: git: 7f53ed1b7478 - 2025Q4 - x11/xmoji: fix build on FreeBSD 15 and later Message-ID: <6921df34.38e2d.602b8df3@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch 2025Q4 has been updated by fuz: URL: https://cgit.FreeBSD.org/ports/commit/?id=7f53ed1b74781d55f706c902693e5c407cc66760 commit 7f53ed1b74781d55f706c902693e5c407cc66760 Author: Robert Clausecker <fuz@FreeBSD.org> AuthorDate: 2025-11-15 09:59:25 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2025-11-22 16:04:02 +0000 x11/xmoji: fix build on FreeBSD 15 and later Seems like we now support inotify() well enough for the port to detect its presence, but that conflicts with it also detecting kqueue support. Disable inotify() to resolve the conflict. MFH: 2025Q4 (cherry picked from commit 3feb67ede9b2da92d04bd33e64430a56f0ea7f25) --- x11/xmoji/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/x11/xmoji/Makefile b/x11/xmoji/Makefile index 17d10b15407a..ca87847da820 100644 --- a/x11/xmoji/Makefile +++ b/x11/xmoji/Makefile @@ -23,7 +23,9 @@ USES= compiler:c11 gmake pkgconfig tar:xz xorg USE_XORG= xcb MAKEFILE= GNUmakefile -MAKE_ARGS= BUNDLED_POSER=off +MAKE_ARGS= BUNDLED_POSER=off \ + WITH_INOTIFY=off \ + WITH_KQUEUE=on OPTIONS_DEFINE= DOCS NLS SVG TRACE OPTIONS_DEFAULT= SVGhome | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6921df34.38e2d.602b8df3>
