Re: Trying to statically link to libeay32.lib

2008-02-01 Thread Scott Rueter
Jed Mitten wrote: I am trying to statically link into libeay32.lib so that I can distribute my application as a single executable instead of packaging DLLs along with it. I am not new to programming, but I am new to using libraries in C/C++. I am also completely new to using OpenSSL in any

RE: Trying to statically link to libeay32.lib

2008-02-01 Thread Jeremy Farrell
From: Jed Mitten Sent: Friday, February 01, 2008 4:00 PM I am trying to statically link into libeay32.lib so that I can distribute my application as a single executable instead of packaging DLLs along with it. I am not new to programming, but I am new to using libraries in C/C++. I am

Re: Trying to statically link to libeay32.lib

2008-02-01 Thread Jed Mitten
Success! Scott, thank you for the help. I did indeed run nmake -f ms\ntdll.mak. Just to correct a type, I had to run 'nmake -f ms\nt.mak', not 'nt.dll'. Regards, Jed Mitten On Feb 1, 2008 12:48 PM, Scott Rueter [EMAIL PROTECTED] wrote: Jed Mitten wrote: I am trying to statically link into

Re: Trying to statically link to libeay32.lib

2008-02-01 Thread Jed Mitten
Did you follow the instructions in INSTALL.W32 for building the OpenSSL static libraries and using them? Yeah, I was having a terrible time getting everything to compile. I was able to wrestle through a lot of it, but it simply wouldn't finished compiling. So I searched for others having

RE: Trying to statically link to libeay32.lib

2008-02-01 Thread Saju Paul
To: openssl-users@openssl.org Subject: Re: Trying to statically link to libeay32.lib Jed Mitten wrote: I am trying to statically link into libeay32.lib so that I can distribute my application as a single executable instead of packaging DLLs along with it. I am not new to programming, but I am new

RE: Trying to statically link to libeay32.lib

2008-02-01 Thread Saju Paul
Jed, To build static openssl libraries; (libeay32.lib ssleay32.lib) perl Configure VC-WIN32 no-rc5 no-idea no-mdc2 ms\do_nasm Edit: ms\nt.mak file (use any standard text editor) change '/MD' to '/MT' in CFLAG nmake -f ms\nt.mak libeay32.lib ssleay32.lib will