svn commit: r317804 - in head/multimedia: gstreamer gstreamer-plugins

Koop Mast kwm at FreeBSD.org
Fri May 10 14:14:11 UTC 2013


Author: kwm
Date: Fri May 10 14:14:10 2013
New Revision: 317804
URL: http://svnweb.freebsd.org/changeset/ports/317804

Log:
  Add USE_GCC=any as a temporary patch to work around a crash in the clang
  compiler after the 3.3 update. The problem was reported upstream but no
  patch available yet.
  
  Submitted by:	miwi

Modified:
  head/multimedia/gstreamer-plugins/Makefile
  head/multimedia/gstreamer/Makefile

Modified: head/multimedia/gstreamer-plugins/Makefile
==============================================================================
--- head/multimedia/gstreamer-plugins/Makefile	Fri May 10 14:03:43 2013	(r317803)
+++ head/multimedia/gstreamer-plugins/Makefile	Fri May 10 14:14:10 2013	(r317804)
@@ -55,6 +55,9 @@ CPPFLAGS+=	-I${LOCALBASE}/include ${PTHR
 LDFLAGS+=	-L${LOCALBASE}/lib ${EXTRA_LIBS} ${PTHREAD_LIBS}
 CFLAGS+=	-I${LOCALBASE}/include
 
+# workaround a crash in clang 3.3 crash llvm bug # 15840
+USE_GCC=	any
+
 DEFAULT_AUDIOSINK?=	osssink
 DEFAULT_AUDIOSRC?=	osssrc
 

Modified: head/multimedia/gstreamer/Makefile
==============================================================================
--- head/multimedia/gstreamer/Makefile	Fri May 10 14:03:43 2013	(r317803)
+++ head/multimedia/gstreamer/Makefile	Fri May 10 14:14:10 2013	(r317804)
@@ -18,6 +18,8 @@ LICENSE=	LGPL20
 LICENSE_FILE=	${WRKSRC}/COPYING
 CFLAGS:=	${CFLAGS} -O2 -Wno-format
 USES=		bison pathfix pkgconfig gettext
+# workaround a crash in clang 3.3 crash llvm bug # 15840
+USE_GCC=	any
 USE_BZIP2=	yes
 USE_GMAKE=	yes
 USE_GNOME=	glib20 libxml2 ltverhack ltasneededhack


More information about the svn-ports-all mailing list