Author: mturk
Date: Fri Oct 18 07:35:06 2013
New Revision: 1533345

URL: http://svn.apache.org/r1533345
Log:
Apply fix for DAEMON-308

Modified:
    commons/proper/daemon/branches/1.0.x/RELEASE-NOTES.txt
    commons/proper/daemon/branches/1.0.x/src/native/unix/configure
    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=1533345&r1=1533344&r2=1533345&view=diff
==============================================================================
--- commons/proper/daemon/branches/1.0.x/RELEASE-NOTES.txt (original)
+++ commons/proper/daemon/branches/1.0.x/RELEASE-NOTES.txt Fri Oct 18 07:35:06 
2013
@@ -84,7 +84,7 @@ NEW FEATURES:
 
 BUG FIXES:
 
-1.0.16: DAEMON-289
+1.0.16: DAEMON-289, DAEMON-308
 
 1.0.15: DAEMON-288, DAEMON-291, DAEMON-292
 

Modified: commons/proper/daemon/branches/1.0.x/src/native/unix/configure
URL: 
http://svn.apache.org/viewvc/commons/proper/daemon/branches/1.0.x/src/native/unix/configure?rev=1533345&r1=1533344&r2=1533345&view=diff
==============================================================================
--- commons/proper/daemon/branches/1.0.x/src/native/unix/configure (original)
+++ commons/proper/daemon/branches/1.0.x/src/native/unix/configure Fri Oct 18 
07:35:06 2013
@@ -2697,6 +2697,11 @@ echo "$as_me: error: Unsupported operati
     supported_os="arm"
     HOST_CPU=arm
     ;;
+  aarch64)
+    CFLAGS="$CFLAGS -DCPU=\\\"aarch64\\\""
+    supported_os="aarch64"
+    HOST_CPU=aarch64
+    ;;
   *)
     echo "$as_me:$LINENO: result: failed" >&5
 echo "${ECHO_T}failed" >&6

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=1533345&r1=1533344&r2=1533345&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 
Fri Oct 18 07:35:06 2013
@@ -179,6 +179,11 @@ AC_DEFUN(AP_SUPPORTED_HOST,[
     supported_os="arm"
     HOST_CPU=arm
     ;;
+  aarch64)
+    CFLAGS="$CFLAGS -DCPU=\\\"aarch64\\\""
+    supported_os="aarch64"
+    HOST_CPU=aarch64
+    ;;
   *)
     AC_MSG_RESULT([failed])
     AC_MSG_ERROR([Unsupported CPU architecture "$host_cpu"]);;


Reply via email to