aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorRodney Dawes <dobey@ximian.com>2004-02-24 04:22:09 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-02-24 04:22:09 +0800
commitdb48fc4e801f1cf1e73aaf07f91a71e62ac10785 (patch)
tree0fb36745c1472499a77c87663946af8f47ea8e05 /configure.in
parenta46817359ee58ef7772f140816ee6fbc979b2bda (diff)
downloadgsoc2013-evolution-db48fc4e801f1cf1e73aaf07f91a71e62ac10785.tar
gsoc2013-evolution-db48fc4e801f1cf1e73aaf07f91a71e62ac10785.tar.gz
gsoc2013-evolution-db48fc4e801f1cf1e73aaf07f91a71e62ac10785.tar.bz2
gsoc2013-evolution-db48fc4e801f1cf1e73aaf07f91a71e62ac10785.tar.lz
gsoc2013-evolution-db48fc4e801f1cf1e73aaf07f91a71e62ac10785.tar.xz
gsoc2013-evolution-db48fc4e801f1cf1e73aaf07f91a71e62ac10785.tar.zst
gsoc2013-evolution-db48fc4e801f1cf1e73aaf07f91a71e62ac10785.zip
Fix a typo in the smime check, so it actually works
2004-02-23 Rodney Dawes <dobey@ximian.com> * configure.in: Fix a typo in the smime check, so it actually works svn path=/trunk/; revision=24835
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
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