As you said, I could solve some of the problems by installing the relative "-dev" package.
But in this specific case, i.e. kdevelop, I still have problem.
I have installed all the necessary packages for Qt (binary and headers) using debian packages and I use a lot of "--with-qt-" to pass the right directories to the script and it still does not feel like helping me ;) and wants to play some game.
This is the script that I use to get the daily snapshots of kdevelop:
--------------------------------------------------------------------------
#!/bin/bash
cd ~/src
rm kdevelop -rf
dt=`date +%Y%m%d`
kdev="kdevelop$dt.tar.gz"
if [ ! -f $kdev ]; then
wget ftp://129.187.206.68/pub/unix/ide/KDevelop/snapshots/$kdev
fi
tar xfz $kdev
export KDEDIR=/usr
export QTDIR=/usr/share/qt3
export LD_LIBRARY_PATH=$QTDIR/lib:$KDEDIR/lib/kde3:$LD_LIBRARY_PATH
export LIBRARY_PATH=$QTDIR/lib:$KDEDIR/lib/kde3:$LIBRARY_PATH
export PATH=$QTDIR/bin:$KDEDIR/bin:$PATH
export CXXFLAGS="-march=i686 -O2 -s"
export CFLAGS="-march=i686 -O2 -s"
cd kdevelop
make -f Makefile.cvs
./configure --prefix=/usr --enable-debug=full --without-java --with-qt-includes=/usr/include/qt3 --with-qt-libraries=/usr/share/qt3/lib --with-qtdoc-dir=/usr/share/qt3/doc -with-kdelibsdoc-dir=/usr/share/doc/kde/HTML/en/kdelibs-apidocs
make -j2
make install
----------------------------------------------------------------------------------
You can see that I even pass the location of docs too. But still no success. That is why I want to download and compile qt3.2, maybe it is gonna help me.
Thanks again Hamid
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]