From owner-svn-ports-head@FreeBSD.ORG Thu Nov 28 17:14:07 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]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C21759BE; Thu, 28 Nov 2013 17:14:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AE49519C3; Thu, 28 Nov 2013 17:14:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rASHE7J2025727; Thu, 28 Nov 2013 17:14:07 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rASHE7Ej025725; Thu, 28 Nov 2013 17:14:07 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201311281714.rASHE7Ej025725@svn.freebsd.org> From: Juergen Lock Date: Thu, 28 Nov 2013 17:14:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335108 - in head/graphics/goom: . files 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.16 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: Thu, 28 Nov 2013 17:14:07 -0000 Author: nox Date: Thu Nov 28 17:14:06 2013 New Revision: 335108 URL: http://svnweb.freebsd.org/changeset/ports/335108 Log: - Fix build with clang on i386. - Remove USE_GCC. - No PORTREVISION bump as there should be no functional change. Submitted by: dim Obtained from: multimedia/gstreamer-plugins-good/files/patch-gst_goom_mmx.h Added: head/graphics/goom/files/ head/graphics/goom/files/patch-src-mmx.h (contents, props changed) Modified: head/graphics/goom/Makefile Modified: head/graphics/goom/Makefile ============================================================================== --- head/graphics/goom/Makefile Thu Nov 28 16:49:31 2013 (r335107) +++ head/graphics/goom/Makefile Thu Nov 28 17:14:06 2013 (r335108) @@ -40,8 +40,4 @@ pre-everything:: BROKEN= Does not compile on powerpc .endif -.if ${ARCH} == "i386" -USE_GCC= any -.endif - .include Added: head/graphics/goom/files/patch-src-mmx.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/goom/files/patch-src-mmx.h Thu Nov 28 17:14:06 2013 (r335108) @@ -0,0 +1,18 @@ +--- src/mmx.h.orig ++++ src/mmx.h +@@ -715,13 +715,13 @@ void zoom_filter_xmmx (int prevX, int pr + { \ + printf("emms()\n"); \ + __asm__ __volatile__ ("emms" \ +- "st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)"); \ ++ "st","st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)"); \ + } + + #else + + #define emms() __asm__ __volatile__ ("emms"::: \ +- "st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)") ++ "st","st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)") + + #endif +