pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/audio/openal-soft
Module Name: pkgsrc
Committed By: gdt
Date: Fri Apr 11 22:27:48 UTC 2025
Modified Files:
pkgsrc/audio/openal-soft: buildlink3.mk
Log Message:
audio/openal-soft/buildlink3.mk: Limit cxx14 to gcc<7
Previously, the package was marked to c++20, and gcc<12 caused bl3 to
flip to the c++14 version. With the present c++17, mk/compiler/gcc.mk
is ok with gcc7, so only substitute openal-soft-cxx14 when gcc < 7.
Resolves pkgsrc complaining that the c++14 version can't be installed,
when there's an up-to-date version installed ok.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/audio/openal-soft/buildlink3.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/audio/openal-soft/buildlink3.mk
diff -u pkgsrc/audio/openal-soft/buildlink3.mk:1.6 pkgsrc/audio/openal-soft/buildlink3.mk:1.7
--- pkgsrc/audio/openal-soft/buildlink3.mk:1.6 Mon Apr 7 11:47:57 2025
+++ pkgsrc/audio/openal-soft/buildlink3.mk Fri Apr 11 22:27:48 2025
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.6 2025/04/07 11:47:57 adam Exp $
+# $NetBSD: buildlink3.mk,v 1.7 2025/04/11 22:27:48 gdt Exp $
BUILDLINK_TREE+= openal-soft
@@ -15,8 +15,7 @@ OPENAL_USE_CXX?= yes
. include "../../audio/openal-soft-c/buildlink3.mk"
.endif
-.if ${CC_VERSION:Mgcc-[56789].*} || \
- ${CC_VERSION:Mgcc-10.*} || ${CC_VERSION:Mgcc-11.*}
+.if ${CC_VERSION:Mgcc-[56].*}
. include "../../audio/openal-soft-cxx14/buildlink3.mk"
.endif
Home |
Main Index |
Thread Index |
Old Index