summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-06-04 16:01:19 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-06-04 16:01:19 +0000
commit7755aae26b200859f42477c386462dfe06c10604 (patch)
tree0b0dda0a432f776ea88e4a163f36ddd9ea5f79f9 /src
parent29ac175069d44469ced6775e3095050437f984de (diff)
downloadirssi-7755aae26b200859f42477c386462dfe06c10604.zip
0.7.90 released.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@292 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src')
-rw-r--r--src/core/Makefile.am1
-rw-r--r--src/fe-common/irc/Makefile.am1
-rw-r--r--src/fe-text/Makefile.am5
-rw-r--r--src/irc/bot/Makefile.am3
-rw-r--r--src/irc/dcc/Makefile.am3
-rw-r--r--src/irc/flood/Makefile.am3
-rw-r--r--src/irc/notifylist/Makefile.am3
-rw-r--r--src/perl/xs/Irssi-dcc.xs2
8 files changed, 15 insertions, 6 deletions
diff --git a/src/core/Makefile.am b/src/core/Makefile.am
index c7cd93b5..207c825e 100644
--- a/src/core/Makefile.am
+++ b/src/core/Makefile.am
@@ -45,6 +45,7 @@ noinst_HEADERS = \
module.h \
modules.h \
net-disconnect.h \
+ net-internal.h \
net-nonblock.h \
network.h \
pidwait.h \
diff --git a/src/fe-common/irc/Makefile.am b/src/fe-common/irc/Makefile.am
index 7c59e0d4..64841cf8 100644
--- a/src/fe-common/irc/Makefile.am
+++ b/src/fe-common/irc/Makefile.am
@@ -33,4 +33,5 @@ noinst_HEADERS = \
completion.h \
fe-common-irc.h \
irc-hilight-text.h \
+ module.h \
module-formats.h
diff --git a/src/fe-text/Makefile.am b/src/fe-text/Makefile.am
index 28de282a..873b4be6 100644
--- a/src/fe-text/Makefile.am
+++ b/src/fe-text/Makefile.am
@@ -40,5 +40,6 @@ noinst_HEADERS = \
statusbar.h \
gui-textwidget.h \
gui-windows.h \
- module-formats.h \
- screen.h
+ screen.h \
+ module.h \
+ module-formats.h
diff --git a/src/irc/bot/Makefile.am b/src/irc/bot/Makefile.am
index b7210f23..e5daefc3 100644
--- a/src/irc/bot/Makefile.am
+++ b/src/irc/bot/Makefile.am
@@ -19,7 +19,8 @@ noinst_HEADERS = \
bot.h \
bot-users.h \
botnet.h \
- botnet-users.h
+ botnet-users.h \
+ module.h
EXTRA_DIST = \
users.sample \
diff --git a/src/irc/dcc/Makefile.am b/src/irc/dcc/Makefile.am
index 4edc3c5d..10ca695a 100644
--- a/src/irc/dcc/Makefile.am
+++ b/src/irc/dcc/Makefile.am
@@ -10,4 +10,5 @@ libirc_dcc_la_SOURCES = \
dcc-files.c
noinst_HEADERS = \
- dcc.h
+ dcc.h \
+ module.h
diff --git a/src/irc/flood/Makefile.am b/src/irc/flood/Makefile.am
index bea84e52..abab9e2b 100644
--- a/src/irc/flood/Makefile.am
+++ b/src/irc/flood/Makefile.am
@@ -10,4 +10,5 @@ libirc_flood_la_SOURCES = \
noinst_HEADERS = \
autoignore.h \
- flood.h
+ flood.h \
+ module.h
diff --git a/src/irc/notifylist/Makefile.am b/src/irc/notifylist/Makefile.am
index 169f7ce6..942314ec 100644
--- a/src/irc/notifylist/Makefile.am
+++ b/src/irc/notifylist/Makefile.am
@@ -13,4 +13,5 @@ libirc_notifylist_la_SOURCES = \
noinst_HEADERS = \
notifylist.h \
- notify-setup.h
+ notify-setup.h \
+ module.h
diff --git a/src/perl/xs/Irssi-dcc.xs b/src/perl/xs/Irssi-dcc.xs
index fe524c0b..900c475e 100644
--- a/src/perl/xs/Irssi-dcc.xs
+++ b/src/perl/xs/Irssi-dcc.xs
@@ -25,6 +25,8 @@ dcc_find_by_port(nick, port)
char *
dcc_type2str(type)
int type
+CODE:
+ RETVAL = (char *) dcc_type2str(type);
int
dcc_str2type(type)