I swear I did this before...but what might I be missing.
I installed the qt 1.7 rpm and all the compat libs from Core 2 disk 3 as well as the cross compiler rpms...
as described in
http://mcb.freewebpage.org/edslug/edslug5-1.htmlFor some reason I'm getting this error when I compile apps that previously worked on non-yum updated kernel for Fedora Core 2...
g++ -o glucozaurus glucozaurus.o glucopaint.o main.o moc_glucozaurus.o -L/opt/Qtopia/lib -L/usr/X11R6/lib -luuid -ljpeg -lqpe -lqt-mt -lXext -lX11 -lm
/usr/bin/ld: cannot find -lqt-mt
collect2: ld returned 1 exit status
make: *** [glucozaurus] Error 1
There is no such qt-mt lib under /opt/Qtopia...my dev-x86-qpe.sh script looks like this...
#!/bin/bash
# dev-x86-qpe.sh script
CROSSCOMPILE=/opt/Embedix/tools/arm-linux/bin:/opt/Embedix/tools/bin
QPEDIR=/opt/Qtopia
QTDIR=/opt/Qtopia
PATH=${QTDIR}/bin:${PATH}:${CROSSCOMPILE}
TMAKEPATH=/opt/Qtopia/tmake/lib/qws/linux-x86-g++/
LD_LIBRARY_PATH=${QTDIR}/lib:${LD_LIBRARY_PATH}
export QPEDIR QTDIR PATH TMAKEPATH LD_LIBRARY_PATH PS1
echo "Altered environment for Sharp Zaurus Development x86"
Any help from Fedora Qt programmers?

Thanks in advance.