summaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authorjmcneill <jmcneill>2009-03-06 01:54:14 +0000
committerjmcneill <jmcneill>2009-03-06 01:54:14 +0000
commitf0214b370f885bb30dc80441d3132c20ce0366f4 (patch)
tree6e000f4ed972e5a4542653ab029e6c9c974d2c8f /multimedia
parentda68726ea1ef400df6a628aed35d619d58760f56 (diff)
downloadpkgsrc-f0214b370f885bb30dc80441d3132c20ce0366f4.tar.gz
Configure script misdetects endianness on NetBSD/sgimips, so pass
--enable-big-endian for OPSYS=NetBSD and MACHINE_ARCH=mipseb
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/mplayer-share/Makefile.common7
1 files changed, 6 insertions, 1 deletions
diff --git a/multimedia/mplayer-share/Makefile.common b/multimedia/mplayer-share/Makefile.common
index 531411a17c9..268282262dc 100644
--- a/multimedia/mplayer-share/Makefile.common
+++ b/multimedia/mplayer-share/Makefile.common
@@ -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"