RE: Link errors

2001-10-12 Thread Dilkie, Lee
Friday, October 12, 2001 11:00 AM > To: '[EMAIL PROTECTED]' > Subject: RE: Link errors > > > You have most likely defined the /MT switch for VC++. This > causes your app > to use the multithreaded STATIC library. The OpenSSL default > uses /MD to > build itse

RE: Link errors

2001-10-12 Thread Neff Robert A
You have most likely defined the /MT switch for VC++. This causes your app to use the multithreaded STATIC library. The OpenSSL default uses /MD to build itself. Either try recompiling your app with /MD or edit the OpenSSL make files and change the /MD switch to /MT for the compiler flags. Rea