diff options
author | maya <maya@pkgsrc.org> | 2016-11-04 14:03:14 +0000 |
---|---|---|
committer | maya <maya@pkgsrc.org> | 2016-11-04 14:03:14 +0000 |
commit | 0038ae18ef79b20f5bcd59184307b0964c678864 (patch) | |
tree | 13937aaf4013b36583af0f76d8187e6c5bb973cb /audio | |
parent | 8aac23def58bd0b0bd19118bb20f123c89ab8cb9 (diff) | |
download | pkgsrc-0038ae18ef79b20f5bcd59184307b0964c678864.tar.gz |
taglib: require gcc 4.7 for our own use of -std=c++11.
the flag is needed, but was only introduced in gcc 4.7.
fixes build on netbsd 6.1.5
Diffstat (limited to 'audio')
-rw-r--r-- | audio/taglib/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/taglib/Makefile b/audio/taglib/Makefile index 3f90d5b6f14..bf1ade5772a 100644 --- a/audio/taglib/Makefile +++ b/audio/taglib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2016/10/31 16:32:56 wiz Exp $ +# $NetBSD: Makefile,v 1.38 2016/11/04 14:03:14 maya Exp $ DISTNAME= taglib-1.11.1 CATEGORIES= audio @@ -11,6 +11,7 @@ LICENSE= gnu-lgpl-v2.1 OR mpl-1.1 USE_LANGUAGES= c c++ CXXFLAGS+= -std=c++11 +GCC_REQD+= 4.7 USE_CMAKE= YES CMAKE_ARGS= -DWITH_MP4=ON -DWITH_ASF=ON |