Hi ports --
GTK+3 is not building on mips64* due to dependencies, specifically the
colord stuff. Mozjs17 no longer builds on loongson due to out of memory
errors. So let's just get rid of colord for mips64* since the
infrastructure to do that is already there.
This allows emacs-gtk+3 to build and run successfully on my Yeeloong.
OK?
~Brian
Index: Makefile
===================================================================
RCS file: /cvs/ports/x11/gtk+3/Makefile,v
retrieving revision 1.126
diff -u -p -r1.126 Makefile
--- Makefile 29 Mar 2015 07:28:06 -0000 1.126
+++ Makefile 3 Apr 2015 01:54:00 -0000
@@ -106,10 +106,10 @@ TEST_IS_INTERACTIVE= x11
CONFIGURE_STYLE= gnu
# sync with devel/mozjs17: colord -> polkit -> mozjs17
+# not for mips64* since devel/mozjs17 does not compile there (OOM)
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64" || \
${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "hppa" || \
- ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64" || \
- ${MACHINE_ARCH} == "mips64el" || ${MACHINE_ARCH} == "mips64"
+ ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64"
LIB_DEPENDS-cups += graphics/colord
WANTLIB-cups += colordprivate colord lcms2
.else