Skip to content

Commit

Permalink
Bugfix: configure: Look in libx32 subdirectory for boost libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-jr committed Apr 9, 2014
1 parent 06d1fc6 commit c0e0b05
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/m4/ax_boost_base.m4
Expand Up @@ -92,7 +92,10 @@ if test "x$want_boost" = "xyes"; then
libsubdirs="lib"
ax_arch=`uname -m`
case $ax_arch in
x86_64|ppc64|s390x|sparc64|aarch64)
x86_64)
libsubdirs="lib64 libx32 lib lib64"
;;
ppc64|s390x|sparc64|aarch64)
libsubdirs="lib64 lib lib64"
;;
esac
Expand Down

0 comments on commit c0e0b05

Please sign in to comment.