aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 61f0112b73..6d231734fe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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"