Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Aug 2015 03:36:53 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r394435 - branches/2015Q3/multimedia/openh264/files
Message-ID:  <201508170336.t7H3arnj050946@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Mon Aug 17 03:36:52 2015
New Revision: 394435
URL: https://svnweb.freebsd.org/changeset/ports/394435

Log:
  MFH: r394430
  
  multimedia/openh264: unbreak build on armv6
  
  Disable NEON support for armv6 (softfp). Alas, MACHINE_CPU is
  underspecified on arm* to conditionalize NEON check within a port.
  
  PR:		201273
  Reported by:	pkg-fallout
  Submitted by:	mikael.urankar@gmail.com
  Approved by:	ports-secteam (delphij)

Added:
  branches/2015Q3/multimedia/openh264/files/patch-build_arch.mk
     - copied unchanged from r394430, head/multimedia/openh264/files/patch-build_arch.mk
Modified:
Directory Properties:
  branches/2015Q3/   (props changed)

Copied: branches/2015Q3/multimedia/openh264/files/patch-build_arch.mk (from r394430, head/multimedia/openh264/files/patch-build_arch.mk)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2015Q3/multimedia/openh264/files/patch-build_arch.mk	Mon Aug 17 03:36:52 2015	(r394435, copy of r394430, head/multimedia/openh264/files/patch-build_arch.mk)
@@ -0,0 +1,11 @@
+--- build/arch.mk.orig	2015-08-09 21:14:55 UTC
++++ build/arch.mk
+@@ -1,7 +1,7 @@
+ ifneq ($(filter %86 x86_64, $(ARCH)),)
+ include $(SRC_PATH)build/x86-common.mk
+ endif
+-ifneq ($(filter-out arm64, $(filter arm%, $(ARCH))),)
++ifneq ($(filter-out armv6 arm64, $(filter arm%, $(ARCH))),)
+ ifeq ($(USE_ASM), Yes)
+ ASM_ARCH = arm
+ ASMFLAGS += -I$(SRC_PATH)codec/common/arm/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508170336.t7H3arnj050946>