From owner-svn-ports-head@FreeBSD.ORG Tue Feb 4 21:16:13 2014 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 2D692FEC; Tue, 4 Feb 2014 21:16:13 +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 14CCD1BE4; Tue, 4 Feb 2014 21:16:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s14LGCag062194; Tue, 4 Feb 2014 21:16:12 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s14LGCLr062193; Tue, 4 Feb 2014 21:16:12 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201402042116.s14LGCLr062193@svn.freebsd.org> From: Koop Mast Date: Tue, 4 Feb 2014 21:16:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r342608 - head/multimedia/x264/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.17 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: Tue, 04 Feb 2014 21:16:13 -0000 Author: kwm Date: Tue Feb 4 21:16:12 2014 New Revision: 342608 URL: http://svnweb.freebsd.org/changeset/ports/342608 QAT: https://qat.redports.org/buildarchive/r342608/ Log: Support powerpc64. Patch by: andreast@ Submitted by: nathan whitehorn Approved by: maintainer Modified: head/multimedia/x264/files/patch-Makefile Modified: head/multimedia/x264/files/patch-Makefile ============================================================================== --- head/multimedia/x264/files/patch-Makefile Tue Feb 4 20:56:58 2014 (r342607) +++ head/multimedia/x264/files/patch-Makefile Tue Feb 4 21:16:12 2014 (r342608) @@ -1,6 +1,6 @@ ---- Makefile.orig 2012-04-24 22:45:06.000000000 +0200 -+++ Makefile 2012-04-25 10:17:55.692859510 +0200 -@@ -84,13 +84,13 @@ +--- Makefile.orig 2013-08-27 22:45:07.000000000 +0200 ++++ Makefile 2014-02-04 20:59:54.000000000 +0100 +@@ -86,13 +86,13 @@ endif X86SRC = $(X86SRC0:%=common/x86/%) @@ -16,12 +16,19 @@ ARCH_X86 = yes ASMSRC = $(X86SRC:-32.asm=-64.asm) common/x86/trellis-64.asm ASFLAGS += -DARCH_X86_64=1 -@@ -106,7 +106,7 @@ +@@ -108,7 +108,14 @@ endif # AltiVec optims -ifeq ($(ARCH),PPC) +ifeq ($(ARCH),powerpc) ++ARCH_PPC = yes ++endif ++ifeq ($(ARCH),powerpc64) ++ARCH_PPC = yes ++endif ++ ++ifdef ARCH_PPC ifneq ($(AS),) SRCS += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c \ common/ppc/quant.c common/ppc/deblock.c \