Configure script misdetects endianness on NetBSD/sgimips, so pass

--enable-big-endian for OPSYS=NetBSD and MACHINE_ARCH=mipseb
This commit is contained in:
jmcneill 2009-03-06 01:54:14 +00:00
parent c876c652bf
commit 78d901ed40

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile.common,v 1.39 2008/12/20 00:43:47 jmcneill Exp $
# $NetBSD: Makefile.common,v 1.40 2009/03/06 01:54:14 jmcneill Exp $
MPLAYER_DIST_VERSION= 1.0rc2
@ -57,4 +57,9 @@ post-extract:
.include "../../mk/bsd.prefs.mk"
# The configure script misdetects endianness on mipseb
.if ${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "mipseb"
CONFIGURE_ARGS+= --enable-big-endian
.endif
.include "../../multimedia/mplayer-share/options.mk"