Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Nov 2025 16:01:53 +0000
From:      Robert Clausecker <fuz@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 3feb67ede9b2 - main - x11/xmoji: fix build on FreeBSD 15 and later
Message-ID:  <6921de71.3803e.6639926e@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by fuz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=3feb67ede9b2da92d04bd33e64430a56f0ea7f25

commit 3feb67ede9b2da92d04bd33e64430a56f0ea7f25
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:01:28 +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
---
 x11/xmoji/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/x11/xmoji/Makefile b/x11/xmoji/Makefile
index 08142c72383f..b7fd540c5999 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=	SVG


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6921de71.3803e.6639926e>