svn commit: r394435 - branches/2015Q3/multimedia/openh264/files

Jan Beich jbeich at FreeBSD.org
Mon Aug 17 03:36:53 UTC 2015


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 at 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/


More information about the svn-ports-branches mailing list