From: <sa...@us...> - 2006-07-28 23:48:31
|
Revision: 16592 Author: sadrul Date: 2006-07-28 16:48:26 -0700 (Fri, 28 Jul 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16592&view=rev Log Message: ----------- This would've caused crashes after the tree-restructuring was complete. A lot of thanks to wabz for testing the thing, finding the bug and fixing it. Modified Paths: -------------- trunk/console/gntgaim.c Modified: trunk/console/gntgaim.c =================================================================== --- trunk/console/gntgaim.c 2006-07-28 18:19:27 UTC (rev 16591) +++ trunk/console/gntgaim.c 2006-07-28 23:48:26 UTC (rev 16592) @@ -246,7 +246,11 @@ gaim_plugins_add_search_path(path); g_free(path); - gaim_plugins_add_search_path("/usr/local/lib/gaim"); /* XXX: */ +#ifdef LIBDIR + gaim_plugins_add_search_path(LIBDIR); +#else + gaim_plugins_add_search_path("/usr/local/lib/gaim"); /* XXX: Remove this after the restructure */ +#endif if (!gaim_core_init(GAIM_GNT_UI)) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |