From owner-svn-ports-head@FreeBSD.ORG Sun Jul 21 11:27:18 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 1BB7F4FB; Sun, 21 Jul 2013 11:27:18 +0000 (UTC) (envelope-from nox@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 0D4E9359; Sun, 21 Jul 2013 11:27:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6LBRHFH093069; Sun, 21 Jul 2013 11:27:17 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6LBRH53093068; Sun, 21 Jul 2013 11:27:17 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201307211127.r6LBRH53093068@svn.freebsd.org> From: Juergen Lock Date: Sun, 21 Jul 2013 11:27:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323375 - head/multimedia/libxine 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: Sun, 21 Jul 2013 11:27:18 -0000 Author: nox Date: Sun Jul 21 11:27:17 2013 New Revision: 323375 URL: http://svnweb.freebsd.org/changeset/ports/323375 Log: Set USE_GCC= any on i386 as clang there doesn't like src/post/deinterlace/plugins/greedy2frame_template_sse2.c . Submitted by: pointyhat via miwi Modified: head/multimedia/libxine/Makefile Modified: head/multimedia/libxine/Makefile ============================================================================== --- head/multimedia/libxine/Makefile Sun Jul 21 11:17:23 2013 (r323374) +++ head/multimedia/libxine/Makefile Sun Jul 21 11:27:17 2013 (r323375) @@ -83,6 +83,20 @@ PATCH_DIST_ARGS= -d ${WRKSRC} -p1 --forw .include +# clang/i386 doesn't like +# src/post/deinterlace/plugins/greedy2frame_template_sse2.c : +# [...] +# ./greedy2frame_template_sse2.c:175:38: error: register %rax is only available in 64-bit mode +# "movdqa (%3), %%xmm0 \n\t" /* xmm0 = T0 */ +# ^ +#:3:11: note: instantiated into assembly here +# movdqa (%rax,%esi), %xmm3 +# ^~~~ +# [...] +.if ${ARCH} == "i386" +USE_GCC= any +.endif + # Fix build WITH_DEBUG .if defined(WITH_DEBUG) DEBUG_FLAGS= -g -O1