File tree 2 files changed +18
-3
lines changed
2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 1
1
1.0.6:
2
2
* Display invalid requests as having the path '???'.
3
+ * Updated the boost autoconf macro.
3
4
4
5
1.0.5:
5
6
* Performance improvements.
Original file line number Diff line number Diff line change 33
33
# and this notice are preserved. This file is offered as-is, without any
34
34
# warranty.
35
35
36
- # serial 20
36
+ # serial 23
37
37
38
38
AC_DEFUN ( [ AX_BOOST_BASE ] ,
39
39
[
@@ -91,9 +91,23 @@ if test "x$want_boost" = "xyes"; then
91
91
dnl are found, e.g. when only header-only libraries are installed!
92
92
libsubdirs="lib"
93
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
94
+ case $ax_arch in
95
+ x86_64|ppc64|s390x|sparc64|aarch64)
95
96
libsubdirs="lib64 lib lib64"
96
- fi
97
+ ;;
98
+ esac
99
+
100
+ dnl allow for real multi-arch paths e.g. /usr/lib/x86_64-linux-gnu. Give
101
+ dnl them priority over the other paths since, if libs are found there, they
102
+ dnl are almost assuredly the ones desired.
103
+ AC_REQUIRE ( [ AC_CANONICAL_HOST ] )
104
+ libsubdirs="lib/${host_cpu}-${host_os} $libsubdirs"
105
+
106
+ case ${host_cpu} in
107
+ i?86)
108
+ libsubdirs="lib/i386-${host_os} $libsubdirs"
109
+ ;;
110
+ esac
97
111
98
112
dnl first we check the system location for boost libraries
99
113
dnl this location ist chosen if boost libraries are installed with the --layout=system option
You can’t perform that action at this time.
0 commit comments