forked from PsychoticNinja/irssi
Compiles now statically to irssi with --with-modules=proxy
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1612 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
9eed52fa40
commit
a5a277c94d
@ -1,10 +1,15 @@
|
|||||||
moduledir = $(libdir)/irssi/modules
|
moduledir = $(libdir)/irssi/modules
|
||||||
module_LTLIBRARIES = libproxy.la
|
module_LTLIBRARIES = libirc_proxy.la
|
||||||
|
|
||||||
INCLUDES = $(GLIB_CFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/src/core/ \
|
INCLUDES = $(GLIB_CFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/src/core/ \
|
||||||
-I$(top_srcdir)/src/irc/core/
|
-I$(top_srcdir)/src/irc/core/
|
||||||
|
|
||||||
libproxy_la_SOURCES = \
|
libirc_proxy.a:
|
||||||
|
$(LN_S) .libs/libirc_proxy.a libirc_proxy.a
|
||||||
|
|
||||||
|
libirc_proxy_la_DEPENDENCIES = libirc_proxy.a
|
||||||
|
|
||||||
|
libirc_proxy_la_SOURCES = \
|
||||||
proxy.c \
|
proxy.c \
|
||||||
dump.c \
|
dump.c \
|
||||||
listen.c
|
listen.c
|
||||||
|
@ -21,30 +21,29 @@
|
|||||||
#include "module.h"
|
#include "module.h"
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
#include "levels.h"
|
#include "levels.h"
|
||||||
#include "fe-common/core/printtext.h"
|
|
||||||
|
|
||||||
void proxy_deinit(void)
|
void irc_proxy_deinit(void)
|
||||||
{
|
{
|
||||||
plugin_proxy_listen_deinit();
|
plugin_proxy_listen_deinit();
|
||||||
}
|
}
|
||||||
|
|
||||||
void proxy_init(void)
|
void irc_proxy_init(void)
|
||||||
{
|
{
|
||||||
settings_add_str("irssiproxy", "irssiproxy_ports", "");
|
settings_add_str("irssiproxy", "irssiproxy_ports", "");
|
||||||
settings_add_str("irssiproxy", "irssiproxy_password", "");
|
settings_add_str("irssiproxy", "irssiproxy_password", "");
|
||||||
|
|
||||||
if (*settings_get_str("irssiproxy_password") == '\0') {
|
if (*settings_get_str("irssiproxy_password") == '\0') {
|
||||||
/* no password - bad idea! */
|
/* no password - bad idea! */
|
||||||
printtext(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
|
signal_emit("gui dialog", 2, "warning",
|
||||||
"Warning!! Password not specified, everyone can "
|
"Warning!! Password not specified, everyone can "
|
||||||
"use this proxy! Use /set irssiproxy_password "
|
"use this proxy! Use /set irssiproxy_password "
|
||||||
"<password> to set it");
|
"<password> to set it");
|
||||||
}
|
}
|
||||||
if (*settings_get_str("irssiproxy_ports") == '\0') {
|
if (*settings_get_str("irssiproxy_ports") == '\0') {
|
||||||
printtext(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
|
signal_emit("gui dialog", 2, "warning",
|
||||||
"No proxy ports specified. Use /SET "
|
"No proxy ports specified. Use /SET "
|
||||||
"irssiproxy_ports <ircnet>=<port> <ircnet2>=<port2> "
|
"irssiproxy_ports <ircnet>=<port> <ircnet2>=<port2> "
|
||||||
"... to set them.");
|
"... to set them.");
|
||||||
}
|
}
|
||||||
|
|
||||||
plugin_proxy_listen_init();
|
plugin_proxy_listen_init();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user