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 | |
parent | 3c45028a08018e2bdcbed34be0be8c71b9dc3bc9 (diff) | |
download | gsoc2013-evolution-70c39223a7eb8e41785548cb3d19c5d1d71d938a.tar gsoc2013-evolution-70c39223a7eb8e41785548cb3d19c5d1d71d938a.tar.gz gsoc2013-evolution-70c39223a7eb8e41785548cb3d19c5d1d71d938a.tar.bz2 gsoc2013-evolution-70c39223a7eb8e41785548cb3d19c5d1d71d938a.tar.lz gsoc2013-evolution-70c39223a7eb8e41785548cb3d19c5d1d71d938a.tar.xz 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
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2003-03-18 Jeffrey Stedfast <fejj@ximian.com> + + * configure.in: Fixed a type-o in the krb5 checks. + 2003-03-19 Not Zed <NotZed@Ximian.com> * configure.in (CAMEL_*, E_UTIL_*, ): Add gthread-2.0, to get any 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" |