Revision: 6986
Author:   [email protected]
Date:     Sat Mar 26 19:08:32 2011
Log:      * configure.ac
  - (QTLIBDIR): Check if $QTDIR/lib64 exists first for openSUSE 64bit.
http://code.google.com/p/uim/source/detail?r=6986

Modified:
 /trunk/configure.ac

=======================================
--- /trunk/configure.ac Sat Feb 12 18:54:50 2011
+++ /trunk/configure.ac Sat Mar 26 19:08:32 2011
@@ -1323,7 +1323,10 @@
     fi

     # GUESS $QTLIBDIR
-    QTLIBDIR="$QTDIR/lib"
+    QTLIBDIR="$QTDIR/lib64"
+    if test ! -d "$QTLIBDIR"; then
+       QTLIBDIR="$QTDIR/lib"
+    fi
     if test ! -d "$QTLIBDIR"; then
        QTLIBDIR="/usr/lib/qt3"
     fi

Reply via email to