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:33:17 UTC

svn commit: r1603859 - in /commons/proper/daemon/branches/1.0.x: RELEASE-NOTES.txt src/native/unix/support/apsupport.m4

Author: ebourg
Date: Thu Jun 19 12:33:16 2014
New Revision: 1603859

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

Modified:
    commons/proper/daemon/branches/1.0.x/RELEASE-NOTES.txt
    commons/proper/daemon/branches/1.0.x/src/native/unix/support/apsupport.m4

Modified: commons/proper/daemon/branches/1.0.x/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/daemon/branches/1.0.x/RELEASE-NOTES.txt?rev=1603859&r1=1603858&r2=1603859&view=diff
==============================================================================
--- commons/proper/daemon/branches/1.0.x/RELEASE-NOTES.txt (original)
+++ commons/proper/daemon/branches/1.0.x/RELEASE-NOTES.txt Thu Jun 19 12:33:16 2014
@@ -1,5 +1,5 @@
             Apache Commons Daemon
-               Version 1.0.15
+               Version 1.0.16
                Release Notes
 
 
@@ -84,7 +84,7 @@ NEW FEATURES:
 
 BUG FIXES:
 
-1.0.16: DAEMON-281, DAEMON-289, DAEMON-308
+1.0.16: DAEMON-281, DAEMON-289, DAEMON-308, DAEMON-319
 
 1.0.15: DAEMON-288, DAEMON-291, DAEMON-292
 

Modified: commons/proper/daemon/branches/1.0.x/src/native/unix/support/apsupport.m4
URL: http://svn.apache.org/viewvc/commons/proper/daemon/branches/1.0.x/src/native/unix/support/apsupport.m4?rev=1603859&r1=1603858&r2=1603859&view=diff
==============================================================================
--- commons/proper/daemon/branches/1.0.x/src/native/unix/support/apsupport.m4 (original)
+++ commons/proper/daemon/branches/1.0.x/src/native/unix/support/apsupport.m4 Thu Jun 19 12:33:16 2014
@@ -113,7 +113,7 @@ AC_DEFUN(AP_SUPPORTED_HOST,[
     LDCMD="/opt/C/bin/cc"
     HOST_CPU=osd
     ;;
-  mips)
+  mips | mipsn32 | mips64)
     CFLAGS="$CFLAGS -DCPU=\\\"mips\\\""
     supported_os="mips"
     HOST_CPU=mips
@@ -142,7 +142,7 @@ AC_DEFUN(AP_SUPPORTED_HOST,[
     fi
     CFLAGS="$CFLAGS -DCPU=\\\"$HOST_CPU\\\" -DSO_EXT=\\\"sl\\\""
     ;;
-  mipsel)
+  mipsel | mipsn32el | mips64el)
     CFLAGS="$CFLAGS -DCPU=\\\"mipsel\\\""
     supported_os="mipsel"
     HOST_CPU=mipsel