1
0
mirror of https://github.com/irssi/irssi.git synced 2025-02-02 15:08:01 -05:00

Fix crash on startup if perl is compiled in.

bug #618


git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4872 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Jilles Tjoelker 2008-08-23 16:05:47 +00:00 committed by jilles
parent 47f129e0a5
commit 84e1e871e7

View File

@ -123,7 +123,7 @@ void perl_scripts_init(void)
my_perl = perl_alloc(); my_perl = perl_alloc();
perl_construct(my_perl); perl_construct(my_perl);
perl_parse(my_perl, xs_init, &argc, args, NULL); perl_parse(my_perl, xs_init, argc, args, NULL);
#if PERL_STATIC_LIBS == 1 #if PERL_STATIC_LIBS == 1
perl_eval_pv("Irssi::Core::boot_Irssi_Core();", TRUE); perl_eval_pv("Irssi::Core::boot_Irssi_Core();", TRUE);
#endif #endif