redhat penguin wrote:
> hi,
> 
> When i run ./config in openssl dir. everything seems fine but once i
> issue 'make' i get errors. Could someone please tell me what could be
> wrong and how i could fix this?
> Thanks!
> ------------------------------------------------------------------------------------------------------------------------------------------------------------------------
> 

<snip>

> In file included from cryptlib.c:117:
> cryptlib.h:62:20: error: stdlib.h: No such file or directory
> cryptlib.h:63:20: error: string.h: No such file or directory

<snip>

It sounds like your environment is horribly broken. Have you ever been
able to successfully compile anything before? Try saving the below to a
file and compiling it (assuming for instance that you save it to
"test.c", run gcc -Wall test.c and see if it barfs).

/* begin file */
#include <stdio.h>
int main()
{
        printf("My compiler works... maybe.\n");
        return 0;
}
/* end file */

Given that your compiler is complaining about not being able to find
basic header files like <string.h>, I'd guess your development
environment is hosed. From the looks of your output, it looks like you
might be running some debian-variant. You might need to apt-get
additional -dev or -src packages, I'm not really sure - I'm a gentoo
user, not a *deb user.  Look for something like glibc-devel or gcc-devel
or something like that.

-Ian
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to