pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/wayland



Module Name:    pkgsrc
Committed By:   riastradh
Date:           Sun Oct 26 03:59:59 UTC 2025

Modified Files:
        pkgsrc/devel/wayland: Makefile

Log Message:
devel/wayland: Fix build on netbsd-9.

We didn't add the alias ppoll until netbsd-10; on netbsd-9 it is
still available only as pollts.

No revbump needed because this simply failed to build on netbsd-9
before.

PR pkg/59726: devel/wayland build broken on netbsd-9


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 pkgsrc/devel/wayland/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/wayland/Makefile
diff -u pkgsrc/devel/wayland/Makefile:1.31 pkgsrc/devel/wayland/Makefile:1.32
--- pkgsrc/devel/wayland/Makefile:1.31  Sun Oct 12 18:47:06 2025
+++ pkgsrc/devel/wayland/Makefile       Sun Oct 26 03:59:59 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.31 2025/10/12 18:47:06 wiz Exp $
+# $NetBSD: Makefile,v 1.32 2025/10/26 03:59:59 riastradh Exp $
 
 DISTNAME=      wayland-1.24.0
 CATEGORIES=    devel
@@ -31,6 +31,10 @@ PKGCONFIG_OVERRIDE+=         output/meson-priva
 
 .include "../../mk/bsd.fast.prefs.mk"
 
+.if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} < 100000
+CFLAGS.NetBSD+=        -Dppoll=pollts
+.endif
+
 .if ${USE_CROSS_COMPILE:tl} == "yes"
 # wayland runs wayland-scanner at build-time.
 TOOL_DEPENDS+= ${PKGNAME}:../../${PKGPATH}



Home | Main Index | Thread Index | Old Index