mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
016b42baea
This patch adds support for the OTR protocol to irssi. This is an import of the external irssi-otr project that we are now taking over maintership for. Major thanks to the original authors of Irssi-OTR: Uli Meis and David Goulet. Thanks to the OTR community in #OTR on OFTC, thanks to everyone who have helped testing the patches and submitted UI suggestions.
26 lines
346 B
Makefile
26 lines
346 B
Makefile
if BUILD_TEXTUI
|
|
TEXTUI=fe-text
|
|
endif
|
|
|
|
if BUILD_IRSSIBOT
|
|
BOTUI=fe-none
|
|
endif
|
|
|
|
if BUILD_IRSSIFUZZER
|
|
FUZZERUI=fe-fuzz
|
|
endif
|
|
|
|
if HAVE_PERL
|
|
PERLDIR=perl
|
|
endif
|
|
|
|
if HAVE_OTR
|
|
OTRDIR=otr
|
|
endif
|
|
|
|
pkginc_srcdir=$(pkgincludedir)/src
|
|
pkginc_src_HEADERS = \
|
|
common.h
|
|
|
|
SUBDIRS = lib-config core irc fe-common $(PERLDIR) $(OTRDIR) $(TEXTUI) $(BOTUI) $(FUZZERUI)
|