Hi, I am trying to build Qwt 6.1.0 RC3 on OS X doing the following:

Qt Code:
  1. $ cd qwt-6.1-rc3
  2. $ qmake
  3. $ make
To copy to clipboard, switch view to plain text mode 

but then, I got the following errors/warnings:

...
compiling qwt_widget_overlay.cpp
In file included from qwt_widget_overlay.cpp:10:
./qwt_widget_overlay.h:147:12: warning: private field 'm_rgbaBuffer' is not used [-Wunused-private-field]
uchar* m_rgbaBuffer;
^
1 warning generated.
...
compiling qwt_plot_shapeitem.cpp
qwt_plot_shapeitem.cpp:245:34: warning: equality comparison result unused [-Wunused-comparison]
d_data->boundingRect == QwtPlotItem::boundingRect();
~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~
qwt_plot_shapeitem.cpp:245:34: note: use '=' to turn this equality comparison into an assignment
d_data->boundingRect == QwtPlotItem::boundingRect();
^~
=
1 warning generated.
...
rm -f qwt qwt.framework/qwt ../lib/qwt.framework/qwt
linking ../lib/qwt.framework/qwt
ld: warning: directory not found for option '-F/Applications/Qt5.0.1/5.0.1/clang_64/qtbase/lib'
mv -f qwt ../lib/qwt.framework/Versions/6/qwt
ln -s Versions/6/qwt ../lib/qwt.framework/qwt
rm -f ../lib/qwt.framework/Versions/Current
ln -s 6 ../lib/qwt.framework/Versions/Current
cd textengines/ && ( test -f Makefile || /Applications/Qt5.0.1/5.0.1/clang_64/bin/qmake /Users/Alan/Desktop/qwt-6.1-rc3/textengines/textengines.pro -o Makefile ) && make -f Makefile
make[1]: Nothing to be done for `first'.
cd designer/ && ( test -f Makefile || /Applications/Qt5.0.1/5.0.1/clang_64/bin/qmake /Users/Alan/Desktop/qwt-6.1-rc3/designer/designer.pro -o Makefile ) && make -f Makefile
compiling qwt_designer_plugin.cpp
compiling qwt_designer_plotdialog.cpp
rcc qwt_designer_plugin.qrc
compiling resources/qrc_qwt_designer_plugin.cpp
moc qwt_designer_plugin.h
compiling moc/moc_qwt_designer_plugin.cpp
moc qwt_designer_plotdialog.h
compiling moc/moc_qwt_designer_plotdialog.cpp
rm -f libqwt_designer_plugin.dylib
linking plugins/designer/libqwt_designer_plugin.dylib
ld: warning: directory not found for option '-F/Applications/Qt5.0.1/5.0.1/clang_64/qtbase/lib'
ld: library not found for -lqwt
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[1]: *** [plugins/designer/libqwt_designer_plugin.dylib] Error 1
make: *** [sub-designer-make_first-ordered] Error 2
Regarding the two warnings, it would probably be nice to fix them, especially the second one. As for the error, I would have expected Qwt's build system to handle it? If not, what is then needed to get Qwt to build out-of-the-box on OS X?