From 3dc77052b55a3061073dcf0bee70b0926bab7b79 Mon Sep 17 00:00:00 2001 From: Peter Williams Date: Tue, 27 Jun 2000 15:49:17 +0000 Subject: Fix the test-threads when no threading svn path=/trunk/; revision=3756 --- mail/ChangeLog | 2 ++ mail/test-thread.c | 12 ++++++++++++ 2 files changed, 14 insertions(+) (limited to 'mail') diff --git a/mail/ChangeLog b/mail/ChangeLog index 690d11027f..95e8d179c6 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,7 @@ 2000-06-27 Peter Williams + * test-thread.c: Don't compile if no threads. + * session.c: Work without broken threads. * message-list.c (filter_date): Solve the ctime_r problem the 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 #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 -- cgit v1.2.3