diff options
author | Timo Sirainen <cras@irssi.org> | 2000-05-29 16:37:00 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-05-29 16:37:00 +0000 |
commit | 93173356bb2a48aebd185e689eeb3ca5f2e31a02 (patch) | |
tree | e71954a066d3810c7a286744c0ec9e7ad1d898d8 /src/irc | |
parent | 4255d6c075d22629333015cf3daf1b42f4af1f5b (diff) | |
download | irssi-93173356bb2a48aebd185e689eeb3ca5f2e31a02.zip |
--with-modules=xxx builds now specified extra modules to irssi binary.
memdebug (if enabled) doesn't now by default check for buffer overflows
since it's a huge slowup.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@250 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/dcc/Makefile.am | 3 | ||||
-rw-r--r-- | src/irc/flood/Makefile.am | 3 | ||||
-rw-r--r-- | src/irc/notifylist/Makefile.am | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/src/irc/dcc/Makefile.am b/src/irc/dcc/Makefile.am index 6e2b68c7..4edc3c5d 100644 --- a/src/irc/dcc/Makefile.am +++ b/src/irc/dcc/Makefile.am @@ -1,4 +1,5 @@ -noinst_LTLIBRARIES = libirc_dcc.la +plugindir = $(libdir)/irssi/plugins +plugin_LTLIBRARIES = libirc_dcc.la INCLUDES = $(GLIB_CFLAGS) \ -I$(top_srcdir)/src -I$(top_srcdir)/src/core/ -I$(top_srcdir)/src/irc/core/ diff --git a/src/irc/flood/Makefile.am b/src/irc/flood/Makefile.am index 1ebebff4..bea84e52 100644 --- a/src/irc/flood/Makefile.am +++ b/src/irc/flood/Makefile.am @@ -1,4 +1,5 @@ -noinst_LTLIBRARIES = libirc_flood.la +plugindir = $(libdir)/irssi/plugins +plugin_LTLIBRARIES = libirc_flood.la INCLUDES = $(GLIB_CFLAGS) \ -I$(top_srcdir)/src -I$(top_srcdir)/src/core/ -I$(top_srcdir)/src/irc/core/ diff --git a/src/irc/notifylist/Makefile.am b/src/irc/notifylist/Makefile.am index 48dd5640..169f7ce6 100644 --- a/src/irc/notifylist/Makefile.am +++ b/src/irc/notifylist/Makefile.am @@ -1,4 +1,5 @@ -noinst_LTLIBRARIES = libirc_notifylist.la +plugindir = $(libdir)/irssi/plugins +plugin_LTLIBRARIES = libirc_notifylist.la INCLUDES = $(GLIB_CFLAGS) \ -I$(top_srcdir)/src -I$(top_srcdir)/src/core/ -I$(top_srcdir)/src/irc/core/ |