From 7d77ef4d82b3eca8ca3a869cd313428026a122a7 Mon Sep 17 00:00:00 2001 From: Tommi Rantala Date: Tue, 18 Sep 2012 13:08:12 +0300 Subject: [PATCH] Enable coredump library build on ARM by default The ARM coredump library compiles, ship it! --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0597f516..9ebd1e5c 100644 --- a/configure.ac +++ b/configure.ac @@ -103,7 +103,7 @@ SET_ARCH([$target_cpu],[target_arch]) AC_ARG_ENABLE(coredump, AS_HELP_STRING([--enable-coredump],[building libunwind-coredump library]),, - [AS_CASE([$host_arch], [mips*|x86*], [enable_coredump=yes], [enable_coredump=no])] + [AS_CASE([$host_arch], [arm*|mips*|x86*], [enable_coredump=yes], [enable_coredump=no])] ) AC_MSG_CHECKING([if we should build libunwind-coredump])