You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by eb...@apache.org on 2014/06/19 14:26:34 UTC

svn commit: r1603858 - /commons/proper/daemon/trunk/src/native/unix/support/apsupport.m4

Author: ebourg
Date: Thu Jun 19 12:26:34 2014
New Revision: 1603858

URL: http://svn.apache.org/r1603858
Log:
Added support for MIPS N32 and N64 ABI, thanks to Sphinx Jiang (DAEMON-319)

Modified:
    commons/proper/daemon/trunk/src/native/unix/support/apsupport.m4

Modified: commons/proper/daemon/trunk/src/native/unix/support/apsupport.m4
URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/support/apsupport.m4?rev=1603858&r1=1603857&r2=1603858&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/support/apsupport.m4 (original)
+++ commons/proper/daemon/trunk/src/native/unix/support/apsupport.m4 Thu Jun 19 12:26:34 2014
@@ -105,7 +105,7 @@ AC_DEFUN(AP_SUPPORTED_HOST,[
     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 @@ AC_DEFUN(AP_SUPPORTED_HOST,[
   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;;