svn commit: r335257 - head/audio/taglib

Sean Bruno sbruno at FreeBSD.org
Sat Nov 30 01:58:17 UTC 2013


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
 


More information about the svn-ports-head mailing list