Am Samstag, 21. Februar 2004 11:13 schrieb Joerg Rieger:
> On Sat, Feb 21, 2004 at 10:06:51AM +0100, Thomas Reitelbach wrote:
> > Am Freitag, 20. Februar 2004 20:58 schrieb Joerg Rieger:
> > > Compiles fine here on a just 5 minutes ago updated Sid installation,
> > > however configure complains while configuring qt-plugin:
> > >
> > > [...]
> > > checking for QT includes... /usr/include/qt3
> > > checking for KDE includes... no
> > > checking for QT libraries... ./configure: line 17536: test: =: unary
> > > operator expected ./configure: line 17536: test: =: unary operator
> > > expected yes, lib: -lqt-mt in /usr/lib
> > > checking for QT >= 3.x... yes
> > > configure: WARNING: environment variable QTDIR is not set
> > > checking for moc... /usr/bin/moc
> > > checking for findtr... /usr/bin/findtr

Can you please check if the attached patch fixes this warning for you?

Thomas
Index: acinclude.m4.in
===================================================================
RCS file: /cvsroot/licq/qt-gui/acinclude.m4.in,v
retrieving revision 1.49
diff -u -r1.49 acinclude.m4.in
--- acinclude.m4.in	17 Feb 2004 09:42:03 -0000	1.49
+++ acinclude.m4.in	21 Feb 2004 13:31:47 -0000
@@ -53,7 +53,7 @@
       fi
 
       for qt_dir in $qt_library_dirs; do
-        if test -z $ac_kde || test $ac_kde = "no" || test $kde_version -ge 3; then
+        if test -z $ac_kde || test "$ac_kde" = "no" || test "$kde_version" -ge 3; then
           if test -r "$qt_dir/libqt-mt.so"; then
             ac_qt_libname=-lqt-mt
             ac_qt_libdir=$qt_dir

Reply via email to