aboutsummaryrefslogtreecommitdiff
path: root/multimedia/libvpx
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2018-04-10 00:12:43 +0000
committerJan Beich <jbeich@FreeBSD.org>2018-04-10 00:12:43 +0000
commit1bc81acd3bc076d2cd15ca1a9c2a62842646a620 (patch)
tree395b106645454b833fc3c16a26f72bff8bb7f2ac /multimedia/libvpx
parentb9ef1b964386a1a75eb669922b569a6f3592d170 (diff)
downloadports-1bc81acd3bc076d2cd15ca1a9c2a62842646a620.tar.gz
ports-1bc81acd3bc076d2cd15ca1a9c2a62842646a620.zip
multimedia/libvpx: unbreak on armv7
vpx_ports/arm_cpudetect.c.o: In function `arm_cpu_caps': arm_cpudetect.c:(.text+0x48): undefined reference to `getauxval' arm_cpudetect.c:(.text+0x78): undefined reference to `getauxval' c++: error: linker command failed with exit code 1 (use -v to see invocation) PR: 224107 Reported by: pkg-fallout Submitted by: Mikaƫl Urankar
Notes
Notes: svn path=/head/; revision=466919
Diffstat (limited to 'multimedia/libvpx')
-rw-r--r--multimedia/libvpx/files/patch-vpx__ports_arm__cpudetect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/multimedia/libvpx/files/patch-vpx__ports_arm__cpudetect.c b/multimedia/libvpx/files/patch-vpx__ports_arm__cpudetect.c
index 06fe93405b40..58e55fc93377 100644
--- a/multimedia/libvpx/files/patch-vpx__ports_arm__cpudetect.c
+++ b/multimedia/libvpx/files/patch-vpx__ports_arm__cpudetect.c
@@ -6,7 +6,7 @@
}
+#elif defined(__FreeBSD__)
+
-+#if __has_include(<sys/auxv.h>)
++#if 0 // __has_include(<sys/auxv.h>)
+#include <sys/auxv.h>
+#else
+#include <sys/param.h>