diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-01-29 08:31:48 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-01-29 08:31:48 +0800 |
commit | 45f610c510c9e577b88f5544a39fb1e1fcd3b85c (patch) | |
tree | 74d37febc46480d3e440fb97ec940834b8e089a1 /configure.in | |
parent | 0664becb605fafac08b830ac8257e4028056381b (diff) | |
download | gsoc2013-evolution-45f610c510c9e577b88f5544a39fb1e1fcd3b85c.tar.gz gsoc2013-evolution-45f610c510c9e577b88f5544a39fb1e1fcd3b85c.tar.zst gsoc2013-evolution-45f610c510c9e577b88f5544a39fb1e1fcd3b85c.zip |
conditionally define which krb5 impl we have
svn path=/trunk/; revision=19677
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 05ec29f8da..6f6425a12b 100644 --- a/configure.in +++ b/configure.in @@ -629,8 +629,10 @@ if test "$x{with_krb5}" != "xno"; then if test "$ac_cv_lib_kerberos5" != "no"; then AC_DEFINE(HAVE_KRB5) if test "$ac_cv_lib_kerberos5" == "$mitlibs"; then + AC_DEFINE(HAVE_MIT_KRB5) msg_krb5="yes (MIT)" else + AC_DEFINE(HAVE_HEIMDAL_KRB5) msg_krb5="yes (Heimdal)" fi KRB5_CFLAGS="-I$with_krb5/include/krb5" |