Hello, I have somewhat experience with OpenSSL, and I've setup a client and a server which use SSL connection objects to communicate, but what I want is to compile my applications with the openssl source code (for example in ssl) because I've added an extension to the code to allow me to send supplemental data during the handshake (via a tool named DAA toolkit) and I do not want to use the shared libraries. Basically, I'm adding new things to the OpenSSL source, and to run them I have to first build the shared libraries and then compile my programs (client/server) with -lssl, -lcrypto and so. I just want to compile my apps inside to openssl source, without any shared libraries, because otherwise I always have to replace the original libraries on other systems with the modified ones I have, in order to compile.
Does anyone know how to do this? Right now, I'm looking into the config script, makefile... to see what should be changed. Do you know a faster solution? Thank you, Andrei D.