diff options
Diffstat (limited to 'mail/test-thread.c')
-rw-r--r-- | mail/test-thread.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mail/test-thread.c b/mail/test-thread.c index 9c62e7f78c..b9fb5bb0b2 100644 --- a/mail/test-thread.c +++ b/mail/test-thread.c @@ -8,6 +8,8 @@ #include <stdio.h> #include "mail-threads.h" +#ifdef ENABLE_BROKEN_THREADS + static void op_1( gpointer userdata ); static void op_2( gpointer userdata ); static void op_3( gpointer userdata ); @@ -139,3 +141,13 @@ int main( int argc, char **argv ) gtk_main(); return 0; } + +#else + +int main( int argc, char **argv ) +{ + g_message( "Threads aren't enabled, so they cannot be tested." ); + return 0; +} + +#endif |