RE: No Library Found!

2001-10-10 Thread SeshaKalyan Manyam
change ur option to cc -I/home/wenwen/openssl-0.9.6/include -o cli cli.o /home/wenwen/openssl-0.9.6/libssl.a /home/wenwen/openssl-0.9.6/libcrypto.a It should work. U give -L option only to give path for a shared library. and "xxx.a" is a static library. -Original Message-From:

Re: No Library Found!

2001-10-10 Thread Frdric Viollet
- From: SeshaKalyan Manyam To: [EMAIL PROTECTED] Sent: Wednesday, October 10, 2001 10:09 AM Subject: RE: No Library Found! change ur option to cc -I/home/wenwen/openssl-0.9.6/include -o cli cli.o /home/wenwen/openssl-0.9.6/libssl.a /home/wenwen/openssl-0.9.6/libcrypto.a

Re: No Library Found!

2001-10-09 Thread Frdric Viollet
I might be saying something wrong, but I think it would work better if you wrote: cc -I/home/wenwen/openssl-0.9.6/include -L/home/wenwen/openssl-0.9.6 -o cli cli.o -lssl -lcrypto The-Ioption is to specify your include path, the -Loption is to specify your library PATH and the -l option

Re: No Library Found!

2001-10-09 Thread Alexey Prohorenko
On Tue, Oct 09, 2001 at 05:29:17PM +0800, wenwen-unitop wrote: when i compiled /openssl-0.9.6/demos/ssl/cli serv it just say: is there any library lost? cc -I/home/wenwen/openssl-0.9.6/include -o cli cli.o -L/home/wenwen/openssl-0.9.6/libssl.a