Browse Source

Merge pull request #4704

54c7df8 build: Fix boost build on some platforms (Cory Fields)
try
Wladimir J. van der Laan 10 years ago
parent
commit
a4f151f714
No known key found for this signature in database GPG Key ID: 74810B012346C9A6
  1. 6
      src/m4/ax_boost_base.m4

6
src/m4/ax_boost_base.m4

@ -112,6 +112,12 @@ if test "x$want_boost" = "xyes"; then
;;
esac
dnl some arches may advertise a cpu type that doesn't line up with their
dnl prefix's cpu type. For example, uname may report armv7l while libs are
dnl installed to /usr/lib/arm-linux-gnueabihf. Try getting the compiler's
dnl value for an extra chance of finding the correct path.
libsubdirs="lib/`$CXX -dumpmachine 2>/dev/null` $libsubdirs"
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
dnl or if you install boost with RPM

Loading…
Cancel
Save