From 57bfc9507b51a58544b3ea75bf8c4a6392662b97 Mon Sep 17 00:00:00 2001 From: Mark Linimon Date: Thu, 23 Jul 2020 15:39:35 +0000 Subject: [PATCH] Add compiler:c++14-lang to USES to atttempt to fix on GCC-based systems: CMake Error in CMakeLists.txt: Target "opustags" requires the language dialect "CXX14" (with compiler extensions), but CMake does not know the compile flags to use to enable it. Unfortunately this is necessary but not sufficient. Approved by: portmgr (tier-2 blanket) --- audio/opustags/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/opustags/Makefile b/audio/opustags/Makefile index 014329d99afe..730297881b39 100644 --- a/audio/opustags/Makefile +++ b/audio/opustags/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libogg.so:audio/libogg -USES= cmake iconv pkgconfig +USES= cmake compiler:c++14-lang iconv pkgconfig USE_GITHUB= yes GH_ACCOUNT= fmang