From 0411d0074bb93446580b4db0ee0f6f0d197d3b84 Mon Sep 17 00:00:00 2001 From: vsr Date: Fri, 9 Oct 2009 14:50:12 +0000 Subject: [PATCH] Fix for Mandriva 2009.0 --- config_files/check_qt.m4 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config_files/check_qt.m4 b/config_files/check_qt.m4 index 44f238b..d98fff2 100644 --- a/config_files/check_qt.m4 +++ b/config_files/check_qt.m4 @@ -330,13 +330,14 @@ then CXXFLAGS="$CXXFLAGS $QT_INCLUDES" LIBS_old=$LIBS - if test "x$QTDIR" = "x/usr" - then + if test "x$QTDIR" = "x/usr" ; then QT_LIB_DIR="" elif test -d ${QTDIR}/lib; then QT_LIB_DIR="-L$QTDIR/lib" elif test -d ${QTDIR}/lib64; then QT_LIB_DIR="-L$QTDIR/lib64" + elif test "x$QTDIR" = "x/usr/lib/qt4" ; then + QT_LIB_DIR="" else AC_MSG_ERROR(Can't detect of Qt library directory ) qt_ok=no -- 2.39.2