svn commit: r466919 - head/multimedia/libvpx/files

Jan Beich jbeich at FreeBSD.org
Tue Apr 10 00:12:44 UTC 2018


Author: jbeich
Date: Tue Apr 10 00:12:43 2018
New Revision: 466919
URL: https://svnweb.freebsd.org/changeset/ports/466919

Log:
  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

Modified:
  head/multimedia/libvpx/files/patch-vpx__ports_arm__cpudetect.c   (contents, props changed)

Modified: head/multimedia/libvpx/files/patch-vpx__ports_arm__cpudetect.c
==============================================================================
--- head/multimedia/libvpx/files/patch-vpx__ports_arm__cpudetect.c	Tue Apr 10 00:12:22 2018	(r466918)
+++ head/multimedia/libvpx/files/patch-vpx__ports_arm__cpudetect.c	Tue Apr 10 00:12:43 2018	(r466919)
@@ -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>


More information about the svn-ports-head mailing list