mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
dcc, flood and notifylist aren't compiled as loadable modules anymore,
no-one wants that and irssi crashes in AIX because of it. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1530 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
99e9ab582f
commit
fc3918b0f0
@ -617,11 +617,11 @@ for c in $CHAT_MODULES; do
|
||||
FE_COMMON_LIBS="$FE_COMMON_LIBS../fe-common/$c/libfe_common_$c.a "
|
||||
fi
|
||||
for s in `eval echo \\$${c}_MODULES`; do
|
||||
CHAT_LIBS="$CHAT_LIBS ../$c/$s/.libs/lib${c}_$s.a"
|
||||
CHAT_LIBS="$CHAT_LIBS ../$c/$s/lib${c}_$s.a"
|
||||
module_inits="$module_inits ${c}_${s}_init();"
|
||||
module_deinits="${c}_${s}_deinit(); $module_deinits"
|
||||
if test -f $srcdir/src/fe-common/$c/$s/module.h; then
|
||||
FE_COMMON_LIBS="$FE_COMMON_LIBS../fe-common/$c/$s/.libs/libfe_${c}_$s.a "
|
||||
FE_COMMON_LIBS="$FE_COMMON_LIBS../fe-common/$c/$s/libfe_${c}_$s.a "
|
||||
fe_module_inits="$fe_module_inits fe_${c}_${s}_init();"
|
||||
fe_module_deinits="fe_${c}_${s}_deinit(); $fe_module_deinits"
|
||||
fi
|
||||
|
@ -1,7 +1,4 @@
|
||||
moduledir = $(libdir)/irssi/modules
|
||||
module_LTLIBRARIES = libfe_irc_dcc.la
|
||||
|
||||
libfe_irc_dcc_la_LDFLAGS = -avoid-version
|
||||
noinst_LIBRARIES = libfe_irc_dcc.a
|
||||
|
||||
INCLUDES = \
|
||||
$(GLIB_CFLAGS) \
|
||||
@ -13,7 +10,7 @@ INCLUDES = \
|
||||
-DHELPDIR=\""$(datadir)/irssi/help"\" \
|
||||
-DSYSCONFDIR=\""$(sysconfdir)"\"
|
||||
|
||||
libfe_irc_dcc_la_SOURCES = \
|
||||
libfe_irc_dcc_a_SOURCES = \
|
||||
fe-dcc.c \
|
||||
fe-dcc-chat.c \
|
||||
fe-dcc-get.c \
|
||||
|
@ -1,7 +1,4 @@
|
||||
moduledir = $(libdir)/irssi/modules
|
||||
module_LTLIBRARIES = libfe_irc_notifylist.la
|
||||
|
||||
libfe_irc_notifylist_la_LDFLAGS = -avoid-version
|
||||
noinst_LIBRARIES = libfe_irc_notifylist.a
|
||||
|
||||
INCLUDES = \
|
||||
$(GLIB_CFLAGS) \
|
||||
@ -12,7 +9,7 @@ INCLUDES = \
|
||||
-DHELPDIR=\""$(datadir)/irssi/help"\" \
|
||||
-DSYSCONFDIR=\""$(sysconfdir)"\"
|
||||
|
||||
libfe_irc_notifylist_la_SOURCES = \
|
||||
libfe_irc_notifylist_a_SOURCES = \
|
||||
fe-notifylist.c \
|
||||
module-formats.c
|
||||
|
||||
|
@ -1,12 +1,9 @@
|
||||
moduledir = $(libdir)/irssi/modules
|
||||
module_LTLIBRARIES = libirc_dcc.la
|
||||
|
||||
libirc_dcc_la_LDFLAGS = -avoid-version
|
||||
noinst_LIBRARIES = libirc_dcc.a
|
||||
|
||||
INCLUDES = $(GLIB_CFLAGS) \
|
||||
-I$(top_srcdir)/src -I$(top_srcdir)/src/core/ -I$(top_srcdir)/src/irc/core/
|
||||
|
||||
libirc_dcc_la_SOURCES = \
|
||||
libirc_dcc_a_SOURCES = \
|
||||
dcc.c \
|
||||
dcc-chat.c \
|
||||
dcc-get.c \
|
||||
|
@ -1,12 +1,9 @@
|
||||
moduledir = $(libdir)/irssi/modules
|
||||
module_LTLIBRARIES = libirc_flood.la
|
||||
|
||||
libirc_flood_la_LDFLAGS = -avoid-version
|
||||
noinst_LIBRARIES = libirc_flood.a
|
||||
|
||||
INCLUDES = $(GLIB_CFLAGS) \
|
||||
-I$(top_srcdir)/src -I$(top_srcdir)/src/core/ -I$(top_srcdir)/src/irc/core/
|
||||
|
||||
libirc_flood_la_SOURCES = \
|
||||
libirc_flood_a_SOURCES = \
|
||||
autoignore.c \
|
||||
flood.c
|
||||
|
||||
|
@ -1,12 +1,9 @@
|
||||
moduledir = $(libdir)/irssi/modules
|
||||
module_LTLIBRARIES = libirc_notifylist.la
|
||||
|
||||
libirc_notifylist_la_LDFLAGS = -avoid-version
|
||||
noinst_LIBRARIES = libirc_notifylist.a
|
||||
|
||||
INCLUDES = $(GLIB_CFLAGS) \
|
||||
-I$(top_srcdir)/src -I$(top_srcdir)/src/core/ -I$(top_srcdir)/src/irc/core/
|
||||
|
||||
libirc_notifylist_la_SOURCES = \
|
||||
libirc_notifylist_a_SOURCES = \
|
||||
notifylist.c \
|
||||
notify-commands.c \
|
||||
notify-ison.c \
|
||||
|
@ -1,7 +1,4 @@
|
||||
moduledir = $(libdir)/irssi/modules
|
||||
module_LTLIBRARIES = libproxy.la
|
||||
|
||||
libproxy_la_LDFLAGS = -avoid-version
|
||||
noinst_LTLIBRARIES = libproxy.la
|
||||
|
||||
INCLUDES = $(GLIB_CFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/src/core/ \
|
||||
-I$(top_srcdir)/src/irc/core/
|
||||
|
Loading…
Reference in New Issue
Block a user