forked from pool/apache-commons-daemon
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
|
Index: commons-daemon-1.0.10-src/src/native/unix/configure
|
||
|
===================================================================
|
||
|
--- commons-daemon-1.0.10-src.orig/src/native/unix/configure
|
||
|
+++ commons-daemon-1.0.10-src/src/native/unix/configure
|
||
|
@@ -2682,6 +2682,9 @@ echo "$as_me: error: Unsupported operati
|
||
|
CFLAGS="$CFLAGS -DCPU=\\\"arm\\\""
|
||
|
supported_os="arm"
|
||
|
HOST_CPU=arm;;
|
||
|
+ aarch64)
|
||
|
+ CFLAGS="$CFLAGS -DCPU=\\\"aarch64\\\""
|
||
|
+ HOST_CPU=$host_cpu;;
|
||
|
*)
|
||
|
echo "$as_me:$LINENO: result: failed" >&5
|
||
|
echo "${ECHO_T}failed" >&6
|
||
|
Index: commons-daemon-1.0.10-src/src/native/unix/support/apsupport.m4
|
||
|
===================================================================
|
||
|
--- commons-daemon-1.0.10-src.orig/src/native/unix/support/apsupport.m4
|
||
|
+++ commons-daemon-1.0.10-src/src/native/unix/support/apsupport.m4
|
||
|
@@ -148,6 +148,9 @@ AC_DEFUN(AP_SUPPORTED_HOST,[
|
||
|
CFLAGS="$CFLAGS -DCPU=\\\"arm\\\""
|
||
|
supported_os="arm"
|
||
|
HOST_CPU=arm;;
|
||
|
+ aarch64)
|
||
|
+ CFLAGS="$CFLAGS -DCPU=\\\"aarch64\\\""
|
||
|
+ HOST_CPU=$host_cpu;;
|
||
|
*)
|
||
|
AC_MSG_RESULT([failed])
|
||
|
AC_MSG_ERROR([Unsupported CPU architecture "$host_cpu"]);;
|