mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Perl works now only as a runtime loadable module
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@656 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
ab2accdb41
commit
17bb7faf2f
6 changed files with 72 additions and 35 deletions
|
|
@ -15,7 +15,6 @@ irssi_DEPENDENCIES = @COMMON_LIBS@
|
|||
irssi_LDADD = \
|
||||
@COMMON_LIBS@ \
|
||||
$(PROG_LIBS) \
|
||||
$(PERL_LDFLAGS) \
|
||||
$(CURSES_LIBS)
|
||||
|
||||
irssi_SOURCES = \
|
||||
|
|
|
|||
|
|
@ -46,11 +46,6 @@ void irc_deinit(void);
|
|||
void mainwindow_activity_init(void);
|
||||
void mainwindow_activity_deinit(void);
|
||||
|
||||
#ifdef HAVE_PERL
|
||||
void irssi_perl_init(void);
|
||||
void irssi_perl_deinit(void);
|
||||
#endif
|
||||
|
||||
static GMainLoop *main_loop;
|
||||
int quitting;
|
||||
|
||||
|
|
@ -110,9 +105,6 @@ static void textui_finish_init(void)
|
|||
fe_common_core_finish_init();
|
||||
fe_common_irc_finish_init();
|
||||
|
||||
#ifdef HAVE_PERL
|
||||
irssi_perl_init();
|
||||
#endif
|
||||
signal_emit("irssi init finished", 0);
|
||||
|
||||
screen_refresh_thaw();
|
||||
|
|
@ -124,9 +116,6 @@ static void textui_deinit(void)
|
|||
signal(SIGINT, SIG_DFL);
|
||||
|
||||
signal_remove("gui exit", (SIGNAL_FUNC) sig_exit);
|
||||
#ifdef HAVE_PERL
|
||||
irssi_perl_deinit();
|
||||
#endif
|
||||
gui_textwidget_deinit();
|
||||
gui_special_vars_deinit();
|
||||
statusbar_deinit();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue