From: Obi-Wan <bv...@in...> - 2001-06-07 05:27:37
|
> Here's a rundown of the major code changes tonight (it's still night for me, > anyway:-): I've been busy with other stuff for a while. Just downloaded the latest at 12:15am CDT Thursday morning. > 5. The configure script should now detect QT as installed on Debian systems > (/usr/bin, /usr/lib, and /usr/include/qt). > > Obi-Wan, since you reported problem #5 above, would you please verify that > the new configure script properly detects QT on your system, after removing > your earlier tree-of-symlinks workaround? Close, but not quite. In configure, line 801 uses -x to check for libqt.so. That won't work on Debian because libqt.so is a symlink to libqt.so.2.3.0 (or whatever version you have). -x fails for symlinks. I changed it to -f and all is well. I actually found that problem last time I installed, but forgot to mention it. if test -x $dir/bin/moc -a \( -f $dir/include/qmainwindow.h -o -f $dir/include/qt/qmainwindow.h \) -a -x $dir/lib/libqt.so -a -z "$HIDE_QT" ; then should be: if test -x $dir/bin/moc -a \( -f $dir/include/qmainwindow.h -o -f $dir/include/qt/qmainwindow.h \) -a -f $dir/lib/libqt.so -a -z "$HIDE_QT" ; then because: # dir /usr/lib/libqt.so* lrwxrwxrwx 1 root root 14 May 31 01:06 /usr/lib/libqt.so -> libqt.so.2.3.0 lrwxrwxrwx 1 root root 14 May 31 00:56 /usr/lib/libqt.so.2 -> libqt.so.2.3.0 lrwxrwxrwx 1 root root 14 May 31 00:56 /usr/lib/libqt.so.2.3 -> libqt.so.2.3.0 -rw-r--r-- 1 root root 4943852 May 25 02:28 /usr/lib/libqt.so.2.3.0 I'm about to change my BIOS as we discussed earlier, and I'll let you know how it goes. -- Obi-Wan -- Ben "Obi-Wan" Hollingsworth ob...@je... The stuff of earth competes for the allegiance I owe only to the Giver of all good things, so if I stand, let me stand on the promise that You will pull me through. -- Rich Mullins |