Re: A little help please!!!

2004-09-15 Thread Goetz Babin-Ebell
Hello Marcos, Marcos Paraiso wrote: Ok, I found out the proper command: gcc -o test test.c c:\mingw\lib\libeay32.a c:\mingw\lib\ssleay32.a This guy compiles my programs just fine... And includes the full libeay and ssleay linbs in your executeable. If anybody knows a better way, please tell me!!! I

Re: A little help please!!!

2004-09-09 Thread Lawrence Bowie
try -L/path/to/crypto/lib in front of -lcrypto LDB Marcos Paraiso wrote: I used the command --> gcc -o test test.c -lcrypto <-- and the following message was prompted: C:\MinGW\bin\..\lib\gcc-lib\mingw32\3.2.3\..\..\..\..\mingw32\bin\ld.exe: cannot find -lcrypto This is the structure of MinGW o

Re: A little help please!!!

2004-09-09 Thread Marcos Paraiso
I used the command --> gcc -o test test.c -lcrypto <-- and the following message was prompted: C:\MinGW\bin\..\lib\gcc-lib\mingw32\3.2.3\..\..\..\..\mingw32\bin\ld.exe: cannot find -lcrypto This is the structure of MinGW on my HD: C:\MinGW\BinC:\MinGW\includeC:\MinGW\libC:\MinGW\minGWC:\MinGW\minG

Re: A little help please!!!

2004-09-09 Thread Smith Baylor
You may need to include -I /cygdrive/c/openssl/include or something like that for including the necessary header files. On Thu, 9 Sep 2004 20:59:23 +0200, Dunceor hmm <[EMAIL PROTECTED]> wrote: > compile with: > gcc -o test test.c -lcrypto > > - Original Message - > From: Marcos Paraiso

Re: A little help please!!!

2004-09-09 Thread Dunceor hmm
compile with: gcc -o test test.c -lcrypto - Original Message - From: Marcos Paraiso <[EMAIL PROTECTED]> Date: Thu, 9 Sep 2004 15:25:09 -0300 (ART) Subject: A little help please!!! To: [EMAIL PROTECTED] Hi everybody, I just started studying the OpenSSL library and I already have a prob