svn commit: r500804 - head/audio/samplv1-lv2

Piotr Kubaj pkubaj at FreeBSD.org
Sat May 4 11:02:17 UTC 2019


Author: pkubaj
Date: Sat May  4 11:02:16 2019
New Revision: 500804
URL: https://svnweb.freebsd.org/changeset/ports/500804

Log:
  audio/samplv1-lv2: fix build with GCC-based architectures
  
  Qt5 requires a C++11-aware compiler:
  checking for Qt install libraries... /usr/local/lib/qt5
  checking for Qt library version >= 5.1... no; Qt 5.1 or greater is required
  
  Add USES=compiler:c++11-lang
  
  Approved by:	mentors (implicit approval)

Modified:
  head/audio/samplv1-lv2/Makefile

Modified: head/audio/samplv1-lv2/Makefile
==============================================================================
--- head/audio/samplv1-lv2/Makefile	Sat May  4 11:02:15 2019	(r500803)
+++ head/audio/samplv1-lv2/Makefile	Sat May  4 11:02:16 2019	(r500804)
@@ -17,7 +17,8 @@ LIB_DEPENDS=	libjack.so:audio/jack \
 		liblo.so:audio/liblo \
 		libsndfile.so:audio/libsndfile
 
-USES=		autoreconf gl gmake pkgconfig qt:5 shared-mime-info
+USES=		autoreconf compiler:c++11-lang gl gmake pkgconfig qt:5 \
+		shared-mime-info
 GNU_CONFIGURE=	yes
 USE_GITHUB=	yes
 GH_ACCOUNT=	rncbc


More information about the svn-ports-all mailing list