pkgsrc-Changes archive

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

CVS commit: pkgsrc/audio/musescore



Module Name:    pkgsrc
Committed By:   gutteridge
Date:           Sat Feb 28 16:53:58 UTC 2026

Modified Files:
        pkgsrc/audio/musescore: Makefile

Log Message:
musescore: work around a build issue with GCC < 10


To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 pkgsrc/audio/musescore/Makefile

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

Modified files:

Index: pkgsrc/audio/musescore/Makefile
diff -u pkgsrc/audio/musescore/Makefile:1.68 pkgsrc/audio/musescore/Makefile:1.69
--- pkgsrc/audio/musescore/Makefile:1.68        Fri Feb  6 10:04:15 2026
+++ pkgsrc/audio/musescore/Makefile     Sat Feb 28 16:53:58 2026
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.68 2026/02/06 10:04:15 wiz Exp $
+# $NetBSD: Makefile,v 1.69 2026/02/28 16:53:58 gutteridge Exp $
 
 DISTNAME=      musescore-4.6.5
 PKGREVISION=   2
@@ -15,6 +15,9 @@ LICENSE=      gnu-gpl-v2
 USE_TOOLS+=            pkg-config
 USE_LANGUAGES=         c c++
 USE_CXX_FEATURES=      c++17
+# GCC 9 (present minimum due to Qt6 enforcing this) has an issue
+# handling a lambda expression, which GCC 10 and newer are fine with.
+GCC_REQD+=             10
 
 DEPENDS+=      qt6-qttranslations-[0-9]*:../../x11/qt6-qttranslations
 



Home | Main Index | Thread Index | Old Index