I've installed qwt to /usr/local/qwt-6.1.0 and I put the source in /usr/src/qwt-6.1.0. When I try to compile the examples with qmake/make I get the following problem:

Qt Code:
  1. $ cd /usr/src/qwt-6.1.0/examples
  2. $ qmake
  3. $ make
  4. ...
  5. make[1]: Entering directory `/usr/src/qwt-6.1.0/examples/animation'
  6. linking ../bin/animation
  7. /usr/local/qwt-6.1.0/lib/libqwt.so: undefined reference to `QMetaType::unregisterConverterFunction(int, int)'
  8. /usr/local/qwt-6.1.0/lib/libqwt.so: undefined reference to `QMetaType::registerConverterFunction(QtPrivate::AbstractConverterFunction const*, int, int)'
  9. /usr/local/qwt-6.1.0/lib/libqwt.so: undefined reference to `QScrollArea::viewportSizeHint() const'
  10. /usr/local/qwt-6.1.0/lib/libqwt.so: undefined reference to `QMetaType::hasRegisteredConverterFunction(int, int)'
  11. collect2: error: ld returned 1 exit status
To copy to clipboard, switch view to plain text mode 

This is kind of odd. What am I missing?