Date: Tue, 10 Apr 2018 00:16:59 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r466928 - branches/2018Q2/multimedia/libvpx/files Message-ID: <201804100016.w3A0Gxv0064336@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Tue Apr 10 00:16:58 2018 New Revision: 466928 URL: https://svnweb.freebsd.org/changeset/ports/466928 Log: MFH: r466919 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 Approved by: ports-secteam blanket Modified: branches/2018Q2/multimedia/libvpx/files/patch-vpx__ports_arm__cpudetect.c Directory Properties: branches/2018Q2/ (props changed) Modified: branches/2018Q2/multimedia/libvpx/files/patch-vpx__ports_arm__cpudetect.c ============================================================================== --- branches/2018Q2/multimedia/libvpx/files/patch-vpx__ports_arm__cpudetect.c Tue Apr 10 00:16:19 2018 (r466927) +++ branches/2018Q2/multimedia/libvpx/files/patch-vpx__ports_arm__cpudetect.c Tue Apr 10 00:16:58 2018 (r466928) @@ -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?201804100016.w3A0Gxv0064336>