We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f97ea commit 3f06448Copy full SHA for 3f06448
src/m4/ax_boost_base.m4
@@ -33,7 +33,7 @@
33
# and this notice are preserved. This file is offered as-is, without any
34
# warranty.
35
36
-#serial 20
+#serial 21
37
38
AC_DEFUN([AX_BOOST_BASE],
39
[
@@ -91,9 +91,11 @@ if test "x$want_boost" = "xyes"; then
91
dnl are found, e.g. when only header-only libraries are installed!
92
libsubdirs="lib"
93
ax_arch=`uname -m`
94
- if test $ax_arch = x86_64 -o $ax_arch = ppc64 -o $ax_arch = s390x -o $ax_arch = sparc64; then
+ case $ax_arch in
95
+ x86_64|ppc64|s390x|sparc64|aarch64)
96
libsubdirs="lib64 lib lib64"
- fi
97
+ ;;
98
+ esac
99
100
dnl first we check the system location for boost libraries
101
dnl this location ist chosen if boost libraries are installed with the --layout=system option
0 commit comments