Added support for MIPS N32 and N64 ABI, thanks to Sphinx Jiang (DAEMON-319)

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/daemon/trunk@1603858 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/native/unix/support/apsupport.m4 b/src/native/unix/support/apsupport.m4
index d077c49..db91e32 100644
--- a/src/native/unix/support/apsupport.m4
+++ b/src/native/unix/support/apsupport.m4
@@ -105,7 +105,7 @@
     LIBS="$LIBS -lBLSLIB"
     LDCMD="/opt/C/bin/cc"
     HOST_CPU=osd;;
-  mips)
+  mips | mipsn32 | mips64)
     CFLAGS="$CFLAGS -DCPU=\\\"mips\\\""
     supported_os="mips"
     HOST_CPU=mips;;
@@ -122,7 +122,7 @@
   hppa2.0)
     CFLAGS="$CFLAGS -DCPU=\\\"PA_RISC2.0\\\" -DSO_EXT=\\\"sl\\\""
     HOST_CPU=PA_RISC2.0;;
-  mipsel)
+  mipsel | mipsn32el | mips64el)
     CFLAGS="$CFLAGS -DCPU=\\\"mipsel\\\""
     supported_os="mipsel"
     HOST_CPU=mipsel;;