# HG changeset patch # User Richard Laager # Date 1130714482 0 # Node ID 1b029c5898af896a46ccd5b8a8130beac6db1e13 # Parent 34ea75bdd0c98f021e1b765649b4e579ae2c938d [gaim-migrate @ 14200] SF Patch #1342842 from Evan Schoenberg "Compiling statically (GAIM_PLUGINS not defined or GAIM_STATIC_PRPL defined), the GAIM_INIT_PLUGIN() creates a normal function... I get a compile error in gcc 3.3 in this condition when the function contains a hyphen, which the new name "gadu- gadu" for the gg prpl causes. This patch changes it back to gg so it will compile." This seems reasonable to me. committer: Tailor Script diff -r 34ea75bdd0c9 -r 1b029c5898af src/protocols/gg/gg.c --- a/src/protocols/gg/gg.c Sun Oct 30 23:14:39 2005 +0000 +++ b/src/protocols/gg/gg.c Sun Oct 30 23:21:22 2005 +0000 @@ -1671,7 +1671,7 @@ } /* }}} */ -GAIM_INIT_PLUGIN(gadu-gadu, init_plugin, info); +GAIM_INIT_PLUGIN(gg, init_plugin, info); /* vim: set ts=4 sts=0 sw=4 noet: */