From b6b70c0bf9114a65f68d22d8f017e463713e680a Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 25 Mar 2003 18:23:46 +0000 Subject: Fixed Heimdal include path. 2003-03-25 Jeffrey Stedfast * configure.in: Fixed Heimdal include path. svn path=/trunk/; revision=20507 --- ChangeLog | 4 ++++ configure.in | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 37f57176d7..c244538706 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-03-25 Jeffrey Stedfast + + * configure.in: Fixed Heimdal include path. + 2003-03-25 Rodney Dawes * data/evolution.desktop.in: Fix 39901 and 40233 diff --git a/configure.in b/configure.in index f1d50f830f..ec761124a8 100644 --- a/configure.in +++ b/configure.in @@ -604,12 +604,13 @@ if test "x${with_krb5}" != "xno"; then AC_DEFINE(HAVE_KRB5,1,[Define if you have Krb5]) if test "$ac_cv_lib_kerberos5" == "$mitlibs"; then AC_DEFINE(HAVE_MIT_KRB5,1,[Define if you have MIT Krb5]) + KRB5_CFLAGS="-I$with_krb5/include" msg_krb5="yes (MIT)" else AC_DEFINE(HAVE_HEIMDAL_KRB5,1,[Define if you have Heimdal]) + KRB5_CFLAGS="-I$with_krb5/include/heimdal" msg_krb5="yes (Heimdal)" fi - KRB5_CFLAGS="-I$with_krb5/include" KRB5_LDFLAGS="-L$with_krb5/lib $ac_cv_lib_kerberos5" fi else -- cgit