Skip to content

Commit 3f06448

Browse files
dertinlaanwj
authored andcommitted
Update ax_boost_base.m4 to serial 21
- Add aarch64 to the list of lib64 architectures
1 parent 71f97ea commit 3f06448

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/m4/ax_boost_base.m4

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# and this notice are preserved. This file is offered as-is, without any
3434
# warranty.
3535

36-
#serial 20
36+
#serial 21
3737

3838
AC_DEFUN([AX_BOOST_BASE],
3939
[
@@ -91,9 +91,11 @@ if test "x$want_boost" = "xyes"; then
9191
dnl are found, e.g. when only header-only libraries are installed!
9292
libsubdirs="lib"
9393
ax_arch=`uname -m`
94-
if test $ax_arch = x86_64 -o $ax_arch = ppc64 -o $ax_arch = s390x -o $ax_arch = sparc64; then
94+
case $ax_arch in
95+
x86_64|ppc64|s390x|sparc64|aarch64)
9596
libsubdirs="lib64 lib lib64"
96-
fi
97+
;;
98+
esac
9799
98100
dnl first we check the system location for boost libraries
99101
dnl this location ist chosen if boost libraries are installed with the --layout=system option

0 commit comments

Comments
 (0)