svn commit: r394430 - head/multimedia/openh264/files

Jan Beich jbeich at FreeBSD.org
Sun Aug 16 22:16:19 UTC 2015


Author: jbeich
Date: Sun Aug 16 22:16:18 2015
New Revision: 394430
URL: https://svnweb.freebsd.org/changeset/ports/394430

Log:
  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
  MFH:		2015Q3

Added:
  head/multimedia/openh264/files/patch-build_arch.mk   (contents, props changed)

Added: head/multimedia/openh264/files/patch-build_arch.mk
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/openh264/files/patch-build_arch.mk	Sun Aug 16 22:16:18 2015	(r394430)
@@ -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-all mailing list