diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-03-26 02:23:46 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-03-26 02:23:46 +0800 |
commit | b6b70c0bf9114a65f68d22d8f017e463713e680a (patch) | |
tree | c05d3e505977b1e30e79c6e57e8826f535da5a4d /configure.in | |
parent | b610a4c040e74812aca713385d134f2430f879f1 (diff) | |
download | gsoc2013-evolution-b6b70c0bf9114a65f68d22d8f017e463713e680a.tar.gz gsoc2013-evolution-b6b70c0bf9114a65f68d22d8f017e463713e680a.tar.zst gsoc2013-evolution-b6b70c0bf9114a65f68d22d8f017e463713e680a.zip |
Fixed Heimdal include path.
2003-03-25 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Fixed Heimdal include path.
svn path=/trunk/; revision=20507
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
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 |