/LOAD module tries to load "module_core" instead. If it wasn't found,

it fallbacks to "module" again. If it is found, it tries to load several
other modules too, like irc_module, fe_module and fe_irc_module.

Split perl module to perl_core and fe_perl. Removed "_common" from some
fe_common modules.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1228 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-02-17 10:35:35 +00:00 committed by cras
commit abe4ddb52a
15 changed files with 250 additions and 104 deletions

View file

@ -42,8 +42,11 @@
#include <signal.h>
#ifdef HAVE_STATIC_PERL
void perl_init(void);
void perl_deinit(void);
void perl_core_init(void);
void perl_core_deinit(void);
void fe_perl_init(void);
void fe_perl_deinit(void);
#endif
void irc_init(void);
@ -135,7 +138,8 @@ static void textui_finish_init(void)
fe_common_irc_finish_init();
#ifdef HAVE_STATIC_PERL
perl_init();
perl_core_init();
fe_perl_init();
#endif
signal_emit("irssi init finished", 0);
@ -173,7 +177,8 @@ static void textui_deinit(void)
deinit_screen();
#ifdef HAVE_STATIC_PERL
perl_deinit();
fe_perl_deinit();
perl_core_deinit();
#endif
theme_unregister();