Hi I am new to Visual Studio and OpenSSL but how do I ensure the library libeay32.dll is merged into my console application so it doesnt complain at runtime. For example I have following simple program
#include <openssl/evp.h> int main (int argc, char *argv[]) { EVP_CIPHER_CTX ctx; EVP_CIPHER_CTX_init(&ctx); } I am using the compiled binaries from Shining Light(http://www.slproweb.com/products/Win32OpenSSL.html) and in Visual Studio have set the Linker->Input->Additional Dependencies to where the libeay32.lib is located. It builds OK but since I dont have libeay32.dll in my C:\windows\system32 folder it throws error. How can I make sure I build it so I can ship the application with the DLL built in so my end users dont need to worrry about having the DLL or not.????? -- View this message in context: http://old.nabble.com/HELP-Win32-linking-libeay32.dll-in-Visual-Studio-tp26588536p26588536.html Sent from the OpenSSL - User mailing list archive at Nabble.com. ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List openssl-users@openssl.org Automated List Manager majord...@openssl.org