aboutsummaryrefslogtreecommitdiff
path: root/src/m4/ax_boost_base.m4
diff options
context:
space:
mode:
authorGuillermo Céspedes Tabárez <dev.dertin@gmail.com>2013-11-15 03:51:52 -0800
committerWladimir J. van der Laan <laanwj@gmail.com>2013-11-18 12:59:54 +0100
commit3f064488e934ad2bab3d44220e14db6939ad0e8b (patch)
tree014cc0e1614ddb4033b8d9db4318eea66f88b4e5 /src/m4/ax_boost_base.m4
parent71f97ea2a71471f383b7e78ce57eb76a76c5c933 (diff)
downloadbitcoin-3f064488e934ad2bab3d44220e14db6939ad0e8b.tar.xz
Update ax_boost_base.m4 to serial 21
- Add aarch64 to the list of lib64 architectures
Diffstat (limited to 'src/m4/ax_boost_base.m4')
-rw-r--r--src/m4/ax_boost_base.m48
1 files changed, 5 insertions, 3 deletions
diff --git a/src/m4/ax_boost_base.m4 b/src/m4/ax_boost_base.m4
index 54a2a1bee7..57d14fe48d 100644
--- a/src/m4/ax_boost_base.m4
+++ b/src/m4/ax_boost_base.m4
@@ -33,7 +33,7 @@
# and this notice are preserved. This file is offered as-is, without any
# warranty.
-#serial 20
+#serial 21
AC_DEFUN([AX_BOOST_BASE],
[
@@ -91,9 +91,11 @@ if test "x$want_boost" = "xyes"; then
dnl are found, e.g. when only header-only libraries are installed!
libsubdirs="lib"
ax_arch=`uname -m`
- if test $ax_arch = x86_64 -o $ax_arch = ppc64 -o $ax_arch = s390x -o $ax_arch = sparc64; then
+ case $ax_arch in
+ x86_64|ppc64|s390x|sparc64|aarch64)
libsubdirs="lib64 lib lib64"
- fi
+ ;;
+ esac
dnl first we check the system location for boost libraries
dnl this location ist chosen if boost libraries are installed with the --layout=system option