diff options
Diffstat (limited to 'camel/camel.c')
-rw-r--r-- | camel/camel.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/camel/camel.c b/camel/camel.c index 0121c1082f..846d946b9a 100644 --- a/camel/camel.c +++ b/camel/camel.c @@ -27,11 +27,11 @@ #include "camel.h" #include <unicode.h> +gboolean camel_verbose_debug = FALSE; + gint camel_init(void) { - - #ifdef ENABLE_THREADS #ifdef G_THREADS_ENABLED g_thread_init (NULL); @@ -40,6 +40,9 @@ camel_init(void) #endif /* G_THREADS_ENABLED */ #endif /* ENABLE_THREADS */ + if (getenv ("CAMEL_VERBOSE_DEBUG")) + camel_verbose_debug = TRUE; + unicode_init (); return 0; |