aboutsummaryrefslogtreecommitdiffstats
path: root/composer/e-msg-composer.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2003-11-27 05:51:40 +0800
committerChris Toshok <toshok@src.gnome.org>2003-11-27 05:51:40 +0800
commit7abb26b3fb954e44f5bfcda777ac0aa24dbf6fee (patch)
tree7b7662d400403ea5811e527aaa4b21cfd7612298 /composer/e-msg-composer.c
parent01815df69498bc8385a53534b33109afbb1939fa (diff)
downloadgsoc2013-evolution-7abb26b3fb954e44f5bfcda777ac0aa24dbf6fee.tar
gsoc2013-evolution-7abb26b3fb954e44f5bfcda777ac0aa24dbf6fee.tar.gz
gsoc2013-evolution-7abb26b3fb954e44f5bfcda777ac0aa24dbf6fee.tar.bz2
gsoc2013-evolution-7abb26b3fb954e44f5bfcda777ac0aa24dbf6fee.tar.lz
gsoc2013-evolution-7abb26b3fb954e44f5bfcda777ac0aa24dbf6fee.tar.xz
gsoc2013-evolution-7abb26b3fb954e44f5bfcda777ac0aa24dbf6fee.tar.zst
gsoc2013-evolution-7abb26b3fb954e44f5bfcda777ac0aa24dbf6fee.zip
switch from just checking SMIME_SUPPORTED to checking both HAVE_NSS and
2003-11-26 Chris Toshok <toshok@ximian.com> * e-msg-composer.c (build_message): switch from just checking SMIME_SUPPORTED to checking both HAVE_NSS and SMIME_SUPPORTED. svn path=/trunk/; revision=23497
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r--composer/e-msg-composer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index 60c65ca9d7..a9a630ae87 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -86,7 +86,7 @@
#include <camel/camel-charset-map.h>
#include <camel/camel-stream-filter.h>
#include <camel/camel-mime-filter-charset.h>
-#ifdef SMIME_SUPPORTED
+#if defined (HAVE_NSS) && defined (SMIME_SUPPORTED)
#include <camel/camel-smime-context.h>
#endif
@@ -551,7 +551,7 @@ build_message (EMsgComposer *composer, gboolean save_html_object_data)
/* Setup working recipient list if we're encrypting */
if (composer->pgp_encrypt
-#ifdef SMIME_SUPPORTED
+#if defined (HAVE_NSS) && defined (SMIME_SUPPORTED)
|| composer->smime_encrypt
#endif
) {