diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-05-04 11:02:16 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-05-04 11:02:16 +0000 |
commit | 0fd07ad91612543cb2a07a90b76ee5ac736a9349 (patch) | |
tree | 53d9be10eeb97edc301e1f2d4cba99032899c700 /audio/samplv1-lv2 | |
parent | science/ALPSCore: Fix OPENMPI2 spelling after r500723 (diff) |
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)
Notes
Notes:
svn path=/head/; revision=500804
Diffstat (limited to 'audio/samplv1-lv2')
-rw-r--r-- | audio/samplv1-lv2/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/samplv1-lv2/Makefile b/audio/samplv1-lv2/Makefile index ef432fa2af09..3baba7aa6f65 100644 --- a/audio/samplv1-lv2/Makefile +++ b/audio/samplv1-lv2/Makefile @@ -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 |