From owner-svn-ports-head@FreeBSD.ORG Fri May 10 16:59:16 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 16445316; Fri, 10 May 2013 16:59:16 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 08BF1959; Fri, 10 May 2013 16:59:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4AGxFYe062457; Fri, 10 May 2013 16:59:15 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4AGxF1T062455; Fri, 10 May 2013 16:59:15 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201305101659.r4AGxF1T062455@svn.freebsd.org> From: Koop Mast Date: Fri, 10 May 2013 16:59:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r317830 - in head/multimedia: gstreamer1 gstreamer1-plugins X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 May 2013 16:59:16 -0000 Author: kwm Date: Fri May 10 16:59:15 2013 New Revision: 317830 URL: http://svnweb.freebsd.org/changeset/ports/317830 Log: Also add USE_GCC=any as workaround for clang 3.3 crash on i386 Modified: head/multimedia/gstreamer1-plugins/Makefile head/multimedia/gstreamer1/Makefile Modified: head/multimedia/gstreamer1-plugins/Makefile ============================================================================== --- head/multimedia/gstreamer1-plugins/Makefile Fri May 10 16:45:53 2013 (r317829) +++ head/multimedia/gstreamer1-plugins/Makefile Fri May 10 16:59:15 2013 (r317830) @@ -56,6 +56,9 @@ CFLAGS:= ${CFLAGS} -O2 -Wno-format CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} LDFLAGS+= -L${LOCALBASE}/lib ${EXTRA_LIBS} ${PTHREAD_LIBS} +# workaround a crash in clang 3.3 crash llvm bug # 15840 +USE_GCC= any + DEFAULT_AUDIOSINK?= osssink DEFAULT_AUDIOSRC?= osssrc Modified: head/multimedia/gstreamer1/Makefile ============================================================================== --- head/multimedia/gstreamer1/Makefile Fri May 10 16:45:53 2013 (r317829) +++ head/multimedia/gstreamer1/Makefile Fri May 10 16:59:15 2013 (r317830) @@ -19,6 +19,8 @@ RUN_DEPENDS= ${LOCALBASE}/share/gir-1.0/ CFLAGS:= ${CFLAGS} -O2 -Wno-format USES= bison gettext pathfix pkgconfig +# workaround a crash in clang 3.3 crash llvm bug # 15840 +USE_GCC= any USE_XZ= yes USE_GMAKE= yes MAKE_JOBS_SAVE= yes