Hi,

Im having some problems getting QSslSocket working, im using QDevelop with Qt 4.3.4.

I first got the error that QSslSocket header was not found, i fixed this by adding to the INCLUDEPATH variable: /usr/include/QtNetwork/ which is where qsslsocket.h is on my system. I could now compile with including <QSslSocket>.

As soon as i tried to use a class eg: socket = new QSslSocket(this);

I get the error:
nsocket.cpp.text+0x25): undefined reference to `QSslSocket::QSslSocket(QObject*)'
collect2: ld returned 1 exit status


So it sounds like there is a missing library somehow?

Any ideas on what im doing wrong here? Im using the default package provided by Arch Linux for Qt, and i have OpenSSL installed as well.

Thanks for any pointers,
Jack