mirror of
https://github.com/irssi/irssi.git
synced 2025-04-25 20:41:23 -05:00
and queries also have "name". Normally they're identical but with !channels the visible_name contains the short !channel name, while name contains full !ABCDEchannel name. The visible_name should be used whenever displaying the channel name, or as printtext()'s target. So, this breaks a few scripts in !channels, they need to be modified to use $channel->{visible_name} instead. Also /LAYOUT SAVE should finally work properly with !channels. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2797 dbcabf3a-b0e7-0310-adc4-f8d773084564
43 lines
830 B
Makefile
43 lines
830 B
Makefile
SUBDIRS = dcc notifylist
|
|
|
|
noinst_LIBRARIES = libfe_common_irc.a
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/src/core/ \
|
|
-I$(top_srcdir)/src/irc/core/ \
|
|
-I$(top_srcdir)/src/fe-common/core/ \
|
|
$(GLIB_CFLAGS) \
|
|
-DHELPDIR=\""$(datadir)/irssi/help"\" \
|
|
-DSYSCONFDIR=\""$(sysconfdir)"\"
|
|
|
|
real_sources = \
|
|
fe-irc-channels.c \
|
|
fe-irc-commands.c \
|
|
fe-irc-messages.c \
|
|
fe-irc-queries.c \
|
|
fe-irc-server.c \
|
|
fe-ircnet.c \
|
|
fe-ctcp.c \
|
|
fe-events.c \
|
|
fe-events-numeric.c \
|
|
fe-modes.c \
|
|
fe-netjoin.c \
|
|
fe-netsplit.c \
|
|
fe-common-irc.c \
|
|
module-formats.c
|
|
|
|
libfe_common_irc_a_SOURCES = \
|
|
$(real_sources) \
|
|
irc-modules.c
|
|
|
|
noinst_HEADERS = \
|
|
fe-irc-server.h \
|
|
module.h \
|
|
module-formats.h
|
|
|
|
DISTFILES = $(DIST_COMMON) $(real_sources) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
|
|
|
distclean-generic:
|
|
rm -f irc-modules.c
|