Configure script misdetects endianness on NetBSD/sgimips, so pass
--enable-big-endian for OPSYS=NetBSD and MACHINE_ARCH=mipseb
This commit is contained in:
parent
c876c652bf
commit
78d901ed40
1 changed files with 6 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue