Date: Sat, 30 Nov 2013 01:58:17 +0000 (UTC) From: Sean Bruno <sbruno@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335257 - head/audio/taglib Message-ID: <201311300158.rAU1wHMh013806@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sbruno (src committer) Date: Sat Nov 30 01:58:17 2013 New Revision: 335257 URL: http://svnweb.freebsd.org/changeset/ports/335257 Log: 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 Modified: head/audio/taglib/Makefile Modified: head/audio/taglib/Makefile ============================================================================== --- head/audio/taglib/Makefile Sat Nov 30 01:57:45 2013 (r335256) +++ head/audio/taglib/Makefile Sat Nov 30 01:58:17 2013 (r335257) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311300158.rAU1wHMh013806>