diff options
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/component/addressbook-component.c | 4 | ||||
-rw-r--r-- | addressbook/gui/component/component-factory.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c index 9468fbaf87..aa2300b957 100644 --- a/addressbook/gui/component/addressbook-component.c +++ b/addressbook/gui/component/addressbook-component.c @@ -48,7 +48,7 @@ #include <gconf/gconf-client.h> #include <gal/util/e-util.h> -#if HAVE_NSS +#ifdef ENABLE_SMIME #include "smime/gui/component.h" #endif @@ -491,7 +491,7 @@ addressbook_component_init (AddressbookComponent *component) component->priv = priv; -#if HAVE_NSS +#ifdef ENABLE_SMIME smime_component_init (); #endif } diff --git a/addressbook/gui/component/component-factory.c b/addressbook/gui/component/component-factory.c index 08bf146691..f8ac672d01 100644 --- a/addressbook/gui/component/component-factory.c +++ b/addressbook/gui/component/component-factory.c @@ -30,7 +30,7 @@ #include "eab-popup-control.h" #include "eab-vcard-control.h" #include "select-names/e-select-names-bonobo.h" -#if HAVE_NSS +#ifdef ENABLE_SMIME #include "smime/gui/certificate-manager.h" #endif #include <bonobo/bonobo-shlib-factory.h> @@ -75,7 +75,7 @@ factory (BonoboGenericFactory *factory, #endif if (strcmp (component_id, SELECT_NAMES_ID) == 0) return BONOBO_OBJECT (e_select_names_bonobo_new ()); -#if HAVE_NSS +#ifdef ENABLE_SMIME if (strcmp (component_id, CERTIFICATE_MANAGER_CONFIG_CONTROL_ID) == 0) return BONOBO_OBJECT (certificate_manager_config_control_new ()); #endif |