summaryrefslogtreecommitdiff
path: root/audio/taglib
diff options
context:
space:
mode:
authorabs <abs>2016-05-14 15:01:05 +0000
committerabs <abs>2016-05-14 15:01:05 +0000
commit15cbf02b19a9b809911e83c5a69622a67a0bc5a6 (patch)
tree0aef14cedf382df86556e5003763513ff7ebc71d /audio/taglib
parentf34be72cb642fd3bc164b8b9b99132d58900a8e7 (diff)
downloadpkgsrc-15cbf02b19a9b809911e83c5a69622a67a0bc5a6.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/taglib')
-rw-r--r--audio/taglib/Makefile6
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