When I compile a qt program (ostinato) using the qt-4.x-dev package, I get the following error during the link phase:
/usr/local/lib/libQtNetwork.so: undefined reference to `SSLv2_server_method'
/usr/local/lib/libQtNetwork.so: undefined reference to `SSLv2_client_method'
The openssl library indeed doesn't define these two functions. It seems, that qt4 tries to use the deprecated SSLv2 methods. For me it looks like the qt4 libraries in tinycore were build with an older version of openssl, which included SSLv2 support.
To get around this, I added a module with dummy functions for SSLv2_client_method and SSLv2_server_method. Then I can sucessfully complete the compilation. Is there a better way to get around this?