I am stuck with a problem installing Qt5 on OSX.
The Qt Requirements for Mac OSX are done - Xcode and command line are installed. Then I followed the steps:
# mkdir qt5
# cd qt5
# git clone git://gitorious.org/qt/qtbase.git
# cd qt5
# ./configure
The test for linking against libxcb and support libraries failed!
You might need to install dependency packages, or pass -qt-xcb.
Then I also tried
# cd qtbase
# ./configure -prefix $HOME/development/macosx/qt5 -nomake docs -nomake examples -nomake demos -nomake tests -opensource -confirm-license -release -no-c++11
Unknown part docs passed to -nomake.
# ./configure
The test for linking against libxcb and support libraries failed!
You might need to install dependency packages, or pass -qt-xcb.
Some other links on related problems are:
"Failed to load platform plugin "xcb" " while launching qt5 app on linux without qt installed
Qt5 installation problems
Then Xquartz was also installed, supposing that the problem is because X11 is missing on OSX Mountain Lion, restarted the computer and tried the installation again. It didn't solved the problem a bit.
On Linux Qt5 installation was nice with no hustle. But on OSX it doesn't work.
I hope someone can give any suggestions.