Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 May 2019 19:46:04 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r501042 - head/audio/noson-app
Message-ID:  <201905081946.x48Jk4ev044993@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Wed May  8 19:46:04 2019
New Revision: 501042
URL: https://svnweb.freebsd.org/changeset/ports/501042

Log:
  audio/noson-app: fix build with GCC-based architectures
  
  Add USES=compiler:c++11-lang to fix build:
  CMake Error in backend/NosonApp/CMakeLists.txt:
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
    "GNU"
  
    version 4.2.1.
  
  Approved by:	mentors (implicit approval)

Modified:
  head/audio/noson-app/Makefile

Modified: head/audio/noson-app/Makefile
==============================================================================
--- head/audio/noson-app/Makefile	Wed May  8 19:34:16 2019	(r501041)
+++ head/audio/noson-app/Makefile	Wed May  8 19:46:04 2019	(r501042)
@@ -12,7 +12,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 
 LIB_DEPENDS=	libFLAC.so:audio/flac
 
-USES=		cmake qt:5 ssl
+USES=		cmake compiler:c++11-lang qt:5 ssl
 USE_QT=		core declarative gui network quickcontrols2 \
 		svg widgets xml \
 		buildtools_build qmake_build



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905081946.x48Jk4ev044993>