Date: Fri, 14 Nov 2014 18:34:00 +0000 (UTC) From: Sean Bruno <sbruno@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372571 - head/audio/speex Message-ID: <201411141834.sAEIY0IF083020@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sbruno Date: Fri Nov 14 18:34:00 2014 New Revision: 372571 URL: https://svnweb.freebsd.org/changeset/ports/372571 QAT: https://qat.redports.org/buildarchive/r372571/ Log: Fix the cross-compile case where we build for armv6/mips on a system that is actually amd64. Phabric: D1155 Reviewed by: bapt Modified: head/audio/speex/Makefile Modified: head/audio/speex/Makefile ============================================================================== --- head/audio/speex/Makefile Fri Nov 14 18:19:31 2014 (r372570) +++ head/audio/speex/Makefile Fri Nov 14 18:34:00 2014 (r372571) @@ -23,9 +23,11 @@ INSTALL_TARGET= install-strip .include <bsd.port.pre.mk> +.if ${ARCH} == "i386" || ${ARCH} == "amd64" .if defined(MACHINE_CPU) && ${MACHINE_CPU:Msse}!="" CONFIGURE_ARGS+= --enable-sse .endif +.endif post-patch: @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411141834.sAEIY0IF083020>