--- alsa-tools-1.0.29/qlo10k1/acinclude.m4~ 2015-03-12 20:44:19.000000000 +0100 +++ alsa-tools-1.0.29/qlo10k1/acinclude.m4 2015-03-12 20:49:11.196554255 +0100 @@ -100,9 +100,13 @@ if test x$QT_IS_STATIC = xno ; then QT_IS_DYNAMIC=`ls $QTDIR/lib/libqt*.so 2> /dev/null` QT_IS_DYNAMIC64=`ls $QTDIR/lib64/libqt*.so 2> /dev/null` - if test "x$QT_IS_DYNAMIC" = x && test "x$QT_IS_DYNAMIC64" = x; then + QT_IS_DYNAMICX32=`ls $QTDIR/libx32/libqt*.so 2> /dev/null` + if test "x$QT_IS_DYNAMIC" = x && test "x$QT_IS_DYNAMIC64" = x && test "x$QT_IS_DYNAMICX32" = x; then AC_MSG_ERROR([*** Couldn't find any Qt libraries]) fi + if test "x$QT_IS_DYNAMICX32" != x; then + QT_LIB_DIR="libx32" + fi if test "$QTFORCE32" = "no" && test "x$QT_IS_DYNAMIC64" != x; then QT_LIB_DIR="lib64" fi