On Mon, Dec 30, 2002 at 04:46:01PM +0000, Mark Phalan wrote:
> I'm trying to get coda working with kerberos5 but am not having much success.
> I've followd the instructions in README.kerberos.
Try 'configure --with-crypto', the kerberos intergration was cleaned up
a lot in the 5.3.20 release and those instruction are a bit outdated.
You should be seeing something like the following lines in the configure
output,
checking openssl/md5.h usability... yes
checking openssl/md5.h presence... yes
checking for openssl/md5.h... yes
checking for library containing MD5_Init... -lcrypto
checking krb5.h usability... yes
checking krb5.h presence... yes
checking for krb5.h... yes
checking com_err.h usability... yes
checking com_err.h presence... yes
checking for com_err.h... yes
checking for library containing krb5_init_context... -lkrb5
checking for library containing krb5_encrypt... -lk5crypto
checking for library containing com_err... -lcom_err
checking krb.h usability... no
checking krb.h presence... no
checking for krb.h... no
checking des.h usability... no
checking des.h presence... no
checking for des.h... no
configure: WARNING: Couldn't find krb.h and des.h headers, not using kerberos 4
After that, rebuild the tree and the clog and auth2 binaries should be
linked against kerberos.
Jan