1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-10 03:33:12 +02:00

Perl plugin support

This commit is contained in:
Sebastien Helleu
2003-11-16 19:40:36 +00:00
parent fd9512bbbc
commit d4ec2e46aa
48 changed files with 6986 additions and 5844 deletions
+2 -1
View File
@@ -19,7 +19,8 @@ bin_PROGRAMS = weechat-curses
weechat_curses_LDADD = ../../common/lib_weechat_main.a \
../../irc/lib_weechat_irc.a \
$(CURSES_LIBS) $(PLUGIN_LIBS)
$(CURSES_LIBS) \
../../plugins/lib_weechat_plugins.a $(PLUGINS_LIBS)
weechat_curses_SOURCES = ../gui.h \
../gui-common.c \
+1 -1
View File
@@ -1519,7 +1519,7 @@ gui_printf_color_type (t_gui_window *window, int type, int color, char *message,
if (window == NULL)
{
log_printf ("gui_printf without window! this is a bug, please send to developers - thanks\n");
wee_log_printf ("gui_printf without window! this is a bug, please send to developers - thanks\n");
return;
}
}
+2 -1
View File
@@ -21,7 +21,8 @@ INCLUDES = $(GTK_CFLAGS)
weechat_gtk_LDADD = ../../common/lib_weechat_main.a \
../../irc/lib_weechat_irc.a \
$(GTK_LIBS) $(PLUGIN_LIBS)
$(GTK_LIBS) \
../../plugins/lib_weechat_plugins.a $(PLUGINS_LIBS)
weechat_gtk_SOURCES = ../gui.h \
../gui-common.c \
+1 -1
View File
@@ -710,7 +710,7 @@ gui_printf_color_type (t_gui_window *window, int type, int color, char *message,
if (window == NULL)
{
log_printf ("gui_printf without window! this is a bug, please send to developers - thanks\n");
wee_log_printf ("gui_printf without window! this is a bug, please send to developers - thanks\n");
return;
}
}
+2 -2
View File
@@ -264,7 +264,7 @@ gui_new_line (t_gui_window *window)
}
else
{
log_printf (_("%s not enough memory for new line!\n"));
wee_log_printf (_("%s not enough memory for new line!\n"));
return NULL;
}
return new_line;
@@ -291,7 +291,7 @@ gui_new_message (t_gui_window *window)
}
else
{
log_printf (_("not enough memory!\n"));
wee_log_printf (_("not enough memory!\n"));
return NULL;
}
return new_message;