| 287 gaim_debug(GAIM_DEBUG_INFO, "perl", "Found plugin info\n"); |
287 gaim_debug(GAIM_DEBUG_INFO, "perl", "Found plugin info\n"); |
| 288 |
288 |
| 289 info = g_new0(GaimPluginInfo, 1); |
289 info = g_new0(GaimPluginInfo, 1); |
| 290 gps = g_new0(GaimPerlScript, 1); |
290 gps = g_new0(GaimPerlScript, 1); |
| 291 |
291 |
| 292 info->api_version = 2; |
292 info->api_version = GAIM_PLUGIN_API_VERSION; |
| 293 info->type = GAIM_PLUGIN_STANDARD; |
293 info->type = GAIM_PLUGIN_STANDARD; |
| 294 |
294 |
| 295 info->dependencies = g_list_append(info->dependencies, |
295 info->dependencies = g_list_append(info->dependencies, |
| 296 PERL_PLUGIN_ID); |
296 PERL_PLUGIN_ID); |
| 297 |
297 |