diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-02-26 23:38:05 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-02-26 23:38:05 +0800 |
commit | bac35e5795d5c8bf54609ba4ec2b5aef10c9b4c2 (patch) | |
tree | 84f6b224edca6afbf8b3d647747a73948cc983ba | |
parent | 71078d6282fc0685d1311e6ff8417b10c98739bf (diff) | |
download | gsoc2013-evolution-bac35e5795d5c8bf54609ba4ec2b5aef10c9b4c2.tar gsoc2013-evolution-bac35e5795d5c8bf54609ba4ec2b5aef10c9b4c2.tar.gz gsoc2013-evolution-bac35e5795d5c8bf54609ba4ec2b5aef10c9b4c2.tar.bz2 gsoc2013-evolution-bac35e5795d5c8bf54609ba4ec2b5aef10c9b4c2.tar.lz gsoc2013-evolution-bac35e5795d5c8bf54609ba4ec2b5aef10c9b4c2.tar.xz gsoc2013-evolution-bac35e5795d5c8bf54609ba4ec2b5aef10c9b4c2.tar.zst gsoc2013-evolution-bac35e5795d5c8bf54609ba4ec2b5aef10c9b4c2.zip |
Fixed the ENABLE_SMIME conditional to work. Fixes the addressbook
2004-02-26 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Fixed the ENABLE_SMIME conditional to work. Fixes
the addressbook relocation error.
svn path=/trunk/; revision=24883
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2004-02-26 Jeffrey Stedfast <fejj@ximian.com> + + * configure.in: Fixed the ENABLE_SMIME conditional to work. Fixes + the addressbook relocation error. + 2004-02-25 Chris Toshok <toshok@ximian.com> * configure.in: add "$xhave_nss = xyes" to the AM_CONDITIONAL for diff --git a/configure.in b/configure.in index 048aa66747..cc96baa722 100644 --- a/configure.in +++ b/configure.in @@ -824,7 +824,7 @@ dnl If the user specifies --with-foo or --enable-nss=static, then we have to do fi fi -AM_CONDITIONAL(ENABLE_SMIME, test x$enable_smime = xyes -a $xhave_nss = xyes) +AM_CONDITIONAL(ENABLE_SMIME, test "x$msg_smime" != "xno") AC_SUBST(MANUAL_NSPR_CFLAGS) AC_SUBST(MANUAL_NSPR_LIBS) |