From 7159742f3e71dc4121c59161202044818fb10358 Mon Sep 17 00:00:00 2001 From: Sean Bruno Date: Sat, 30 Nov 2013 01:58:17 +0000 Subject: [PATCH] Address some of the nonsense seen in audio/clementine-player as the code in this port ends up generating libraries and code that just don't link correctly. PR: ports/178687 --- audio/taglib/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/audio/taglib/Makefile b/audio/taglib/Makefile index 863f4e37ddda..a932435a098e 100644 --- a/audio/taglib/Makefile +++ b/audio/taglib/Makefile @@ -3,6 +3,7 @@ PORTNAME= taglib PORTVERSION= 1.9.1 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://taglib.github.io/releases/ @@ -18,6 +19,10 @@ CMAKE_ARGS= -DWITH_ASF:BOOL=ON \ -DWITH_MP4:BOOL=ON USE_LDCONFIG= yes +# clang will generate code that just doesn't work with clementine-player +# if this isn't compiled as though it were C99. +CFLAGS+= -std=c99 + OPTIONS_DEFINE= RCC OPTIONS_SUB= yes