From db48fc4e801f1cf1e73aaf07f91a71e62ac10785 Mon Sep 17 00:00:00 2001 From: Rodney Dawes Date: Mon, 23 Feb 2004 20:22:09 +0000 Subject: [PATCH] Fix a typo in the smime check, so it actually works 2004-02-23 Rodney Dawes * configure.in: Fix a typo in the smime check, so it actually works svn path=/trunk/; revision=24835 --- ChangeLog | 6 +++++- configure.in | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index dee7481e22..ead48228cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ -2004-02023 Adam Weinberger +2004-02-23 Rodney Dawes + + * configure.in: Fix a typo in the smime check, so it actually works + +2004-02-23 Adam Weinberger * configure.in: Added "en_CA" (Canadian English) to ALL_LINGUAS. diff --git a/configure.in b/configure.in index 3fc826dbd3..794b8b9ee6 100644 --- a/configure.in +++ b/configure.in @@ -647,7 +647,7 @@ dnl If the user specifies --with-foo or --enable-nss=static, then we have to do PKG_CHECK_MODULES(NSS, mozilla-nss, have_nss="yes") if test "x${have_nss}" = "xyes"; then msg_ssl="yes (Mozilla NSS)" - if test "$enable_smime" = "xyes"; then + if test "x$enable_smime" = "xyes"; then AC_DEFINE(ENABLE_SMIME,1,[Define if SMIME should be enabled]) msg_smime="yes (Mozilla NSS)" fi