pkgsrc-Changes archive

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

CVS commit: pkgsrc/x11/xfce4-desktop



Module Name:    pkgsrc
Committed By:   gutteridge
Date:           Mon Mar  9 21:14:44 UTC 2026

Modified Files:
        pkgsrc/x11/xfce4-desktop: Makefile

Log Message:
xfce4-desktop: fix builds on NetBSD 9.x

There's a parsing bug triggered in older GCC versions, e.g., 7.5.
(Probably the same one that led to the tests in libxfce4windowing
being disabled from builds, too.) Since GCC 10 already gets pulled
into the dependency chain anyway (from shared-mime-info, of all
things), go with it.


To generate a diff of this commit:
cvs rdiff -u -r1.118 -r1.119 pkgsrc/x11/xfce4-desktop/Makefile

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

Modified files:

Index: pkgsrc/x11/xfce4-desktop/Makefile
diff -u pkgsrc/x11/xfce4-desktop/Makefile:1.118 pkgsrc/x11/xfce4-desktop/Makefile:1.119
--- pkgsrc/x11/xfce4-desktop/Makefile:1.118     Tue Jan 27 08:41:07 2026
+++ pkgsrc/x11/xfce4-desktop/Makefile   Mon Mar  9 21:14:44 2026
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.118 2026/01/27 08:41:07 wiz Exp $
+# $NetBSD: Makefile,v 1.119 2026/03/09 21:14:44 gutteridge Exp $
 
 .include "../../meta-pkgs/xfce4/Makefile.common"
 
@@ -13,6 +13,8 @@ HOMEPAGE=     https://docs.xfce.org/xfce/xfd
 COMMENT=       Xfce desktop background manager
 
 USE_LANGUAGES= c99
+# Work around parsing bug triggered in older GCC versions, e.g., 7.5.
+GCC_REQD+=     10
 USE_TOOLS+=    gdbus-codegen
 
 BUILD_DEFS+=           PKG_SYSCONFBASE



Home | Main Index | Thread Index | Old Index