/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
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
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
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
-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
Hi all,
I always 'forget' that in this list 'reply' doesn't mean 'reply to the
list'. So, here's some follow-up of my mail... And my additional
question...
Hi,
thanks... this works fine. I didn't use the 'mask'-things in the right
way. Anyway, major 'problem' solved. I still have one more quest