Qt/Mac 3.3.6

qt-mac-free-3.3.6-snapshot-20060313.tar.gz
まずは定番ページを参考にしながら(-fastはトラブルの元という話があるので外す)
http://pcweb.mycom.co.jp/column/osx/084/


$ ./configure -thread -qt-gif
問題なく終了したので
$ sudo make





widgets/qlistview.cpp:262: warning: 'class QListViewToolTip' has virtual functions but non-virtual destructor
といった警告が大量に出てるのが気になる…



/Developer/qt/bin/uic -L /Developer/qt/plugins listboxeditor.ui -o listboxeditor.h
dyld: Library not loaded: libqt-mt.3.dylib
Referenced from: /Developer/qt/bin/uic
Reason: image not found
make[4]: *** [listboxeditor.h] Trace/BPT trap
make[3]: *** [sub-designer] Error 2
make[2]: *** [sub-designer] Error 2
make[1]: *** [sub-tools] Error 2
make: *** [init] Error 2


orz


…気を取り直して、今度は
$ ./configure -thread
$ make
でひとまず完了。


で、
$ sudo ln -sf /Developer/qt/lib/libqt-mt.3.dylib /usr/lib
$ sudo ln -sf /Developer/qt/lib/libqui.1.dylib /usr/lib


の後、サンプルアプリケーションの動作を確認。
どうやら正常にインストールできたようです。