diff options
author | abs <abs@pkgsrc.org> | 2016-05-14 15:01:05 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2016-05-14 15:01:05 +0000 |
commit | bf9d85fd2c1d00e59127faf333edfc5364f86ac9 (patch) | |
tree | 0aef14cedf382df86556e5003763513ff7ebc71d /audio | |
parent | 2b9cd84e9e95a0d0add46a3361129efb758b6f60 (diff) | |
download | pkgsrc-bf9d85fd2c1d00e59127faf333edfc5364f86ac9.tar.gz |
audio/taglib looks for atomic support in the following order: std
(c++11), boost, gcc, mac, win)
The Latest boost update have broken the boost atomic check so it succeeds
if boost is installed (even though not buildlinked)
Since pkgsrc has a minimum gcc version of 2.8, we can just add
CXXFLAGS+= -std=c++11
and have taglib pickup the std atomics, which avoids the boost atomic detect
issue, and is arguably better anyway
bump pkgrevision
Diffstat (limited to 'audio')
-rw-r--r-- | audio/taglib/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/audio/taglib/Makefile b/audio/taglib/Makefile index 394aff9ebd0..f07b8647171 100644 --- a/audio/taglib/Makefile +++ b/audio/taglib/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.35 2016/05/05 12:01:51 wiz Exp $ +# $NetBSD: Makefile,v 1.36 2016/05/14 15:01:05 abs Exp $ DISTNAME= taglib-1.11 +PKGREVISION= 1 CATEGORIES= audio MASTER_SITES= http://taglib.github.io/releases/ @@ -9,7 +10,8 @@ HOMEPAGE= http://taglib.github.io/ COMMENT= Library for accessing id tags in various media files LICENSE= gnu-lgpl-v2.1 OR mpl-1.1 -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++ +CXXFLAGS+= -std=c++11 USE_CMAKE= YES CMAKE_ARGS= -DWITH_MP4=ON -DWITH_ASF=ON |