openssl compilation failure

I am using a c program, in which openssl is included, as
#include <openssl/rsa.h>

I am using Borland C++ 5.5 to compile and run this program. When in command line, I compile it using
bcc32 filename.c

It gives me some errors which are listed below
1. "Error E2209 c:\Borland\Bcc55\include\openssl/rsa.h 62: Unable to open
include file 'openssl/asn1.h'"
2. Error E2209 c:\Borland\Bcc55\include\openssl/rsa.h 65: Unable to open
include fle 'openssl/bio.h'
3. Error E2209 c:\Borland\Bcc55\include\openssl/rsa.h 67: Unable to open
include fle 'openssl/crypto.h'
4. Error E2209 c:\Borland\Bcc55\include\openssl/rsa.h 68: Unable to open
include fle 'openssl/ossl_typ.h'
5. Error E2209 c:\Borland\Bcc55\include\openssl/rsa.h 70: Unable to open
include fle 'openssl/bn.h'

When in Include directory, I searched for rsa.h file, I could not find it. Is that means, openssl/rsa.h is not included in the standard package by default?
if yes, then what can be the solution for this? How will I be able to include "openssl/rsa.h"?

Please help me to solve this problem.
Topic archived. No new replies allowed.