Mercurial > pidgin.yaz
view libpurple/plugins/perl/libpurpleperl.c @ 30653:fa311a0e51c0
jabber: Don't show resources that we know for sure isn't supporting the file
transfer protocols we support in the resource selector when sending a file.
Closes #9791
author | Marcus Lundblad <ml@update.uu.se> |
---|---|
date | Wed, 30 Jun 2010 21:34:43 +0000 |
parents | c6e563dfaa7a |
children |
line wrap: on
line source
#include <gmodule.h> #ifdef __SUNPRO_C #pragma init (my_init) void my_init(void); void my_init() { #else void __attribute__ ((constructor)) my_init(void); void __attribute__ ((constructor)) my_init() { #endif /* Very evil hack...puts perl.so's symbols in the global table * but does not create a circular dependancy because g_module_open * will only open the library once. */ g_module_open("perl.so", 0); }