Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 10 Apr 2018 00:12:43 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r466919 - head/multimedia/libvpx/files
Message-ID:  <201804100012.w3A0ChWF062625@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



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