Re: Compiler method of finding header.

2003-10-22 Thread Bryan Whitehead
/usr/include/openssl/kssl.h:72:18: krb5.h: No such file or directory includes line: #include So it's expecting the header to be wherever the compiler expects them. using locate: /usr/kerberos/include/krb5.h How do I tell the compiler where to look for headers? OS is RedHat 9. Short answer: Add

Re: Compiler method of finding header.

2003-10-22 Thread John T. Williams
if you asking how to permanently change your include folder, I have to admit that I don't actually know. but if you just want it to search a particular directory at compile time you use the -I option for instance if I want gcc to look in the /home/mydir/include folder I would type gcc file.c -I

Re: Compiler method of finding header.

2003-10-22 Thread bilbo
On Tuesday 21 October 2003 10:27 pm, Adam Luchjenbroers wrote: > /usr/include/openssl/kssl.h:72:18: krb5.h: No such file or directory > > includes line: > #include > > So it's expecting the header to be wherever the compiler expects them. > > using locate: > /usr/kerberos/include/krb5.h > > How do

Re: Compiler method of finding header.

2003-10-22 Thread pa3gcu
On Tuesday 21 October 2003 23:27, Adam Luchjenbroers wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > /usr/include/openssl/kssl.h:72:18: krb5.h: No such file or directory > > includes line: > #include > > So it's expecting the header to be wherever the compiler expects them. > > using

Compiler method of finding header.

2003-10-22 Thread Adam Luchjenbroers
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 /usr/include/openssl/kssl.h:72:18: krb5.h: No such file or directory includes line: #include So it's expecting the header to be wherever the compiler expects them. using locate: /usr/kerberos/include/krb5.h How do I tell the compiler where to loo