Subject: Re: Autodetecting MIT vs Heimdal kerberos
To: Bill Studenmund <wrstuden@netbsd.org>
From: Johan Danielsson <joda@pdc.kth.se>
List: tech-security
Date: 11/14/2001 11:52:00
Bill Studenmund <wrstuden@netbsd.org> writes:

> Does anyone know of a good way to, in a configure script, autodetect
> if we have MIT or Heimdal kerberos?

if krb5-config --version | grep -qsi heimdal; then echo heimdal; fi

Works with Heimdal 0.3d and newer (about a year old).

/Johan