diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-03-19 11:20:22 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-03-19 11:20:22 +0800 |
commit | 70c39223a7eb8e41785548cb3d19c5d1d71d938a (patch) | |
tree | 13ef7a1f01595ae1e98441ec0fec12b87f615a02 /configure.in | |
parent | 3c45028a08018e2bdcbed34be0be8c71b9dc3bc9 (diff) | |
download | gsoc2013-evolution-70c39223a7eb8e41785548cb3d19c5d1d71d938a.tar.gz gsoc2013-evolution-70c39223a7eb8e41785548cb3d19c5d1d71d938a.tar.zst gsoc2013-evolution-70c39223a7eb8e41785548cb3d19c5d1d71d938a.zip |
Fixed a type-o in the krb5 checks.
2003-03-18 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Fixed a type-o in the krb5 checks.
svn path=/trunk/; revision=20354
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index de0e12a0a0..dcd30208c3 100644 --- a/configure.in +++ b/configure.in @@ -585,7 +585,7 @@ AC_ARG_WITH(krb5, [ --with-krb5=PREFIX Location of Kerberos 5 libs/include AC_ARG_WITH(krb4, [ --with-krb4=PREFIX Location of Kerberos 4 libs/includes], with_krb4="$withval", with_krb4="no") msg_krb5="no" -if test "$x{with_krb5}" != "xno"; then +if test "x${with_krb5}" != "xno"; then LDFLAGS_save="$LDFLAGS" mitlibs="-lkrb5 -lk5crypto -lcom_err -lgssapi_krb5" |