On 9 November 2010 11:20, Derek Lewis <dle...@mtu.edu> wrote:
> I have attached the config.log file, and a capture of the messages from
> making that I called make.log.

OK, then it does seem to have something to do with Kerberos.

The cli_krb5_get_ticket function is defined in
source3/libsmb/clikrb5.c and if you don't have HAVE_KRB5 defined, then
it's supposed to do this:

 /* this saves a few linking headaches */
 int cli_krb5_get_ticket(const char *principal, time_t time_offset,
                        DATA_BLOB *ticket, DATA_BLOB *session_key_krb5, uint32 
extra_ap_opts,
                        const char *ccname, time_t *tgs_expire,
                        const char *impersonate_princ_s)
{
         DEBUG(0,("NO KERBEROS SUPPORT\n"));
         return 1;
}

but for some reason that's not happening for you, so you get link errors.

The solution to your problem is, of course, to install the Kerberos
libs (either MIT or Heimdal).

Try "apt-get install libkrb5-dev".

-- 
Michael Wood <esiot...@gmail.com>
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  https://lists.samba.org/mailman/options/samba

Reply via email to