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:   wiz
Date:           Mon Feb 20 12:23:44 UTC 2023

Modified Files:
        pkgsrc/audio/openal-soft: Makefile

Log Message:
openal-soft: require gcc 9

This uses [[likely]] from C++20.

XXX: pkgsrc doesn't support "c++20" in USE_LANGUAGES yet


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 pkgsrc/audio/openal-soft/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/openal-soft/Makefile
diff -u pkgsrc/audio/openal-soft/Makefile:1.32 pkgsrc/audio/openal-soft/Makefile:1.33
--- pkgsrc/audio/openal-soft/Makefile:1.32      Thu Feb 16 15:15:55 2023
+++ pkgsrc/audio/openal-soft/Makefile   Mon Feb 20 12:23:44 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.32 2023/02/16 15:15:55 wiz Exp $
+# $NetBSD: Makefile,v 1.33 2023/02/20 12:23:44 wiz Exp $
 
 DISTNAME=      openal-soft-1.23.0
 CATEGORIES=    audio
@@ -10,11 +10,12 @@ HOMEPAGE=   https://openal-soft.org/
 COMMENT=       Software implementation of the OpenAL 3D audio API
 LICENSE=       gnu-lgpl-v2
 
-USE_LANGUAGES= c c++14
+# c++20 not yet supported by mk/
+USE_LANGUAGES= c c++
 USE_TOOLS+=    pkg-config gmake
 
-# https://github.com/kcat/openal-soft/issues/347
-GCC_REQD+=     5
+# uses [[likely]] from C++20
+GCC_REQD+=     9
 
 PKGCONFIG_OVERRIDE+=   openal.pc.in
 PKG_SYSCONFSUBDIR=     openal



Home | Main Index | Thread Index | Old Index