ossp-pkg/as/as-gui/aclocal.m4 1.14 -> 1.15
--- aclocal.m4 2003/02/26 16:09:29 1.14
+++ aclocal.m4 2003/03/06 00:03:26 1.15
@@ -321,6 +321,7 @@
dnl ## Scan to find out which Qt library to link against
dnl ## FIXME Merge static and dynamic library search blocks
+dnl ## FIXME Remove this qt-mt check and do --enable-threads instead
for file in x `find $QTBASE/lib -name "libqt.so" -print`; do
test .$file = .x && continue
l_dir=`echo $file | sed -e 's;[^/]*$;;' -e 's;\(.\)/$;\1;'`
@@ -350,10 +351,7 @@
changequote([, ])dnl
dnl ## Append paths of libs and headers
-dnl ## FIXME Remove this qt-mt check and do --enable-threads instead
-if test ".$lib" = .qt-mt; then
- LIBS="$LIBS -l$lib"
-else
+if test ".$lib" != .; then
LIBS="$LIBS -l$lib"
fi
LDFLAGS="$LDFLAGS -L$l_dir"
|
|