Remove

2008-01-22 Thread Qadeer Baig
Remove

Re: Can OpenSSL be built as static libs?

2005-08-16 Thread Qadeer Baig
Yes, Read INSTALL.XX file available with the source. On 8/14/05, Edward Chan [EMAIL PROTECTED] wrote: I was wondering if OpenSSL can be built as static libs as I don't want people to be able to simply replace the dll's with their own. Thanks, Ed

MSVC Application linked against static openssl libs is crashing

2005-06-06 Thread Qadeer Baig
openssl static libraries in an app developed in MSVC or CodeWarrior so that I do not need to have openssl dlls on the machine? Great thanks in advance, Regards, --- Qadeer Baig __ OpenSSL Project http

Re: MSVC Application linked against static openssl libs is crashing

2005-06-06 Thread Qadeer Baig
that /MT should be used in MSVC while compiling the app which is using openssl libraries, then I have just confirmed that in c/c++ tab of project settings /MT is already spcified (because the dll which I am creating is multithread). I am using MSVC6.0 Any other idea? Thaks and regards, -- Qadeer Baig

Re: MSVC Application linked against static openssl libs is crashing

2005-06-06 Thread Qadeer Baig
Thanks Brant Thomsen for the reply, My application is actually a Win32 Dynamic-Library with no MFC support. Any other idea? Thanks and regards -- Qadeer Baig On 6/6/05, Brant Thomsen [EMAIL PROTECTED] wrote: I have had problems getting OpenSSL to link correctly if MFC is being used. Try

libeay32.lib giving some link errors while using on Windows

2005-06-01 Thread Qadeer Baig
in advance. --- Qadeer Baig. __ OpenSSL Project http://www.openssl.org User Support Mailing Listopenssl-users@openssl.org Automated List Manager [EMAIL

Re: libeay32.lib giving some link errors while using on Windows

2005-06-01 Thread Qadeer Baig
Great thanks Rush! This exercise did solve the problems :-) Now I see that this problem with nt.mak has already been pointed out by Matyas Majzik in one of his emails to this group. Thanks and regards, -- Qadeer Baig On 6/1/05, Rush Manbert [EMAIL PROTECTED] wrote: Hi Qadeer, I just went

Re: How to link statically openssl in a dylib

2005-04-28 Thread Qadeer Baig
Hi Rush, Your solution has been very helpful. (2) does the correct thing. It statically links against your version of libssl.a. It also acts just like it found the library because of a -lssl on the linker command line. (Only the functions that are required are pulled into your executable,

How to link statically openssl in a dylib

2005-04-27 Thread Qadeer Baig
Hi, I am using openssl in an application (this application actually is a .dylib on Mac OSX). Currently I am linking openssl calls by using -lssl -lcrypto linker options. Since this links openssl calls dynamcally therefor I can only use resulting application on the computers where libssl.dylib and

Re: How to link statically openssl in a dylib

2005-04-27 Thread Qadeer Baig
Thank you Joseph, I also wondered to see ssl libraries in /usr/lib on my machine, when I started using ssl, but before seeing them there I had tried to compile Openssl on my machine so I thought this compilation has placed them there. But still, client says link them statically :( Regards, --