|
From: Kouhei S. <nul...@cl...> - 2013-05-17 15:42:15
|
Kouhei Sutou 2013-05-18 00:41:38 +0900 (Sat, 18 May 2013) New Revision: f2d70bcd90b384bd9f3e4e915851e32ab9755087 https://github.com/clear-code/cutter/commit/f2d70bcd90b384bd9f3e4e915851e32ab9755087 Message: Add g_thread_supported() defined check Modified files: cutter/cut-main.c Modified: cutter/cut-main.c (+3 -1) =================================================================== --- cutter/cut-main.c 2013-05-18 00:36:26 +0900 (8fa568b) +++ cutter/cut-main.c 2013-05-18 00:41:38 +0900 (c4e0a5a) @@ -57,7 +57,9 @@ char **environ = NULL; #endif #if GLIB_CHECK_VERSION(2, 32, 0) -# define g_thread_supported() TRUE +# ifndef g_thread_supported +# define g_thread_supported() TRUE +# endif # define g_thread_init(vtable) #endif |