aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/camel-smime-context.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 5d7d8aeee0..6c4e951062 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-19 Chris Toshok <toshok@ximian.com>
+
+ * camel-smime-context.c: wrap this file with #ifdef ENABLE_SMIME
+ instead of #ifdef HAVE_NSS.
+
2004-02-19 Jeffrey Stedfast <fejj@ximian.com>
* providers/local/camel-mbox-store.c (get_folder): Add sanity
diff --git a/camel/camel-smime-context.c b/camel/camel-smime-context.c
index c32d6e4d72..fe2df6150f 100644
--- a/camel/camel-smime-context.c
+++ b/camel/camel-smime-context.c
@@ -30,7 +30,7 @@
#include <config.h>
#endif
-#ifdef HAVE_NSS
+#ifdef ENABLE_SMIME
#include "nss.h"
#include <cms.h>
@@ -1077,4 +1077,4 @@ camel_smime_context_get_type(void)
return type;
}
-#endif /* HAVE_NSS */
+#endif /* ENABLE_SMIME */