libpurple/plugins/perl/libgaimperl.c

changeset 15435
4b933b06d75e
parent 14254
77edc7a6191a
child 15611
5cb407a7d44a
equal deleted inserted replaced
15434:94dcf9e39d66 15435:4b933b06d75e
1 #include <gmodule.h>
2 void __attribute__ ((constructor)) my_init(void);
3
4 void __attribute__ ((constructor)) my_init() {
5 /* Very evil hack...puts perl.so's symbols in the global table
6 * but does not create a circular dependancy because g_module_open
7 * will only open the library once. */
8 g_module_open("perl.so", 0);
9 }

mercurial