From: <sa...@us...> - 2006-06-22 23:08:09
|
Revision: 16311 Author: sadrul Date: 2006-06-22 16:08:05 -0700 (Thu, 22 Jun 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16311&view=rev Log Message: ----------- We don't want threads. Modified Paths: -------------- trunk/console/Makefile trunk/console/gntgaim.c Modified: trunk/console/Makefile =================================================================== --- trunk/console/Makefile 2006-06-22 22:38:03 UTC (rev 16310) +++ trunk/console/Makefile 2006-06-22 23:08:05 UTC (rev 16311) @@ -1,5 +1,5 @@ CFLAGS=`pkg-config --cflags gaim gobject-2.0` -g -I./libgnt/ -LDFLAGS=`pkg-config --libs gaim gobject-2.0 gthread-2.0 libxml-2.0` -lncursesw -L./libgnt/ -lgnt +LDFLAGS=`pkg-config --libs gaim gobject-2.0 libxml-2.0` -lncursesw -L./libgnt/ -lgnt GG_SOURCES = \ gntblist.c \ Modified: trunk/console/gntgaim.c =================================================================== --- trunk/console/gntgaim.c 2006-06-22 22:38:03 UTC (rev 16310) +++ trunk/console/gntgaim.c 2006-06-22 23:08:05 UTC (rev 16311) @@ -168,8 +168,6 @@ int main(int argc, char **argv) { - GMainLoop *loop; - /* Initialize the libgaim stuff */ init_libgaim(); @@ -178,11 +176,6 @@ /* Enable the accounts and restore the status */ gaim_accounts_restore_current_statuses(); - /* Main loop */ - g_thread_init(NULL); - loop = g_main_loop_new(NULL, TRUE); - g_thread_create((GThreadFunc)g_main_loop_run, loop, FALSE, NULL); - /* Initialize the UI */ init_gnt_ui(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |