adventures with QT/Mac and KDE
I have embarked on a quest to compile KDE against QT/Mac so that I can run KDE apps natively instead of running them with X.
I finally got QT to compile cleanly, using the instructions on how to compile QT/Mac by Ranger Rick as a reference. I don't know if the instructions don't work exactly as stated because Qt/Mac is no longer beta, or if there are other reasons, but what I did was somewhat different (NOTE: I will assume that you are very comfortable with the command-line and have some experience with compiling from source):
- Untar the archive to whereever you want, such as in
~/
. - Set
$QTDIR
to point to whereever you unpacked the archive. For example,~/qt-mac-free-3
- Add
$QTDIR/bin
to$PATH
- Add
$QTDIR/lib
to$DYLD_LIBRARY_PATH
./configure --prefix=/opt/qt-mac
make
sudo make install
- Change
$QTDIR
to/opt/qt-mac
- Reset
$PATH
,$MANPATH
, and$DYLD_LIBRARY_PATH
to reflect the change in$QTDIR