Qwt on FreeBSD/ beginner installation question
Hello everyone,
Qwt 5.2.1 is part of FreeBSD but I can't find the examples. (It's also hard to find an introductory tutorial on-line. If anyone has a good link, I would appreciate it.)
So, I was wondering, should I just download the latest version and install it in my home directory? But I'm not sure how to do this? I'm not sure how to install it to my home directory and I'm also not sure about how to configure the linker, so that the libraries would be found.
Thanks!
Re: Qwt on FreeBSD/ beginner installation question
Follow up question ;)
I checked out the svn directory and attempted to Install.
First I had to set the QMAKESPEC, which I set as freebsd-g++
than qmake && make...
===========
cd src && qmake src.pro -o Makefile
src.pro:17: Unknown replace function: qtLibraryTarget
src.pro:225: Unknown test function: CONFIG
cd src && make -f Makefile
qmake -o Makefile src.pro
Error processing project file: /home/joe/qwt-6.0/src/obj/src.pro
*** Error code 2
Stop in /home/joe/qwt-6.0/src.
*** Error code 1
Stop in /home/joe/qwt-6.0.
==========
Any clues? Thanks!
Re: Qwt on FreeBSD/ beginner installation question
Incomplete or outdated Qt version ?
Uwe
Re: Qwt on FreeBSD/ beginner installation question
Thank you for the reply Uwe,
the problem was that I was using the BSD version of make. What works for FreeBSD is:
$ qmake-qt4
$ gmake
$ gmake install
Re: Qwt on FreeBSD/ beginner installation question
Hi,
After 1 week working, I find this thread and solve my qwt compiling problem using "gmake" instead of "make"
Many thanks...