From: <ev...@us...> - 2006-11-29 22:36:08
|
Revision: 17847 http://svn.sourceforge.net/gaim/?rev=17847&view=rev Author: evands Date: 2006-11-29 14:36:03 -0800 (Wed, 29 Nov 2006) Log Message: ----------- Fixed static compilation; libaim and libicq need to have unique plugin names, and those names should preferably match the names defined by the info struct Modified Paths: -------------- trunk/libgaim/protocols/oscar/libaim.c trunk/libgaim/protocols/oscar/libicq.c Modified: trunk/libgaim/protocols/oscar/libaim.c =================================================================== --- trunk/libgaim/protocols/oscar/libaim.c 2006-11-29 18:05:25 UTC (rev 17846) +++ trunk/libgaim/protocols/oscar/libaim.c 2006-11-29 22:36:03 UTC (rev 17847) @@ -146,4 +146,4 @@ gaim_prefs_remove("/plugins/prpl/oscar/always_use_rv_proxy"); } -GAIM_INIT_PLUGIN(oscar, init_plugin, info); +GAIM_INIT_PLUGIN(aim, init_plugin, info); Modified: trunk/libgaim/protocols/oscar/libicq.c =================================================================== --- trunk/libgaim/protocols/oscar/libicq.c 2006-11-29 18:05:25 UTC (rev 17846) +++ trunk/libgaim/protocols/oscar/libicq.c 2006-11-29 22:36:03 UTC (rev 17847) @@ -150,4 +150,4 @@ gaim_prefs_remove("/plugins/prpl/oscar/always_use_rv_proxy"); } -GAIM_INIT_PLUGIN(oscar, init_plugin, info); +GAIM_INIT_PLUGIN(icq, init_plugin, info); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |