mirror of
https://github.com/irssi/irssi.git
synced 2026-08-20 00:52:30 +02:00
Add OTR support.
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.
This commit is contained in:
parent
ad4324d242
commit
016b42baea
25 changed files with 3262 additions and 41 deletions
10
.travis.yml
10
.travis.yml
|
|
@ -27,17 +27,23 @@ addons:
|
|||
packages:
|
||||
- libperl-dev
|
||||
- elinks
|
||||
- libgcrypt11-dev
|
||||
|
||||
before_install:
|
||||
- perl -V
|
||||
- ./autogen.sh --with-proxy --with-bot --with-perl=module
|
||||
- wget https://otr.cypherpunks.ca/libotr-4.1.1.tar.gz
|
||||
- tar zxf libotr-*.tar.gz
|
||||
- cd libotr-*
|
||||
- ./configure --prefix $HOME/otr-prefix && make && make install
|
||||
- cd ..
|
||||
- ./autogen.sh --with-proxy --with-bot --with-perl=module --with-otr=yes --with-libotr-prefix=$HOME/otr-prefix/lib --with-libotr-inc-prefix=$HOME/otr-prefix/include
|
||||
- make dist
|
||||
- cd ..
|
||||
- tar xaf */irssi-*.tar.*
|
||||
- cd irssi-*
|
||||
|
||||
install:
|
||||
- ./configure --with-proxy --with-bot --with-perl=module --prefix=$HOME/irssi-build
|
||||
- ./configure --with-proxy --with-bot --with-perl=module --with-otr=yes --with-libotr-prefix=$HOME/otr-prefix/lib --with-libotr-inc-prefix=$HOME/otr-prefix/include --prefix=$HOME/irssi-build
|
||||
$( $UNITTESTS && echo --enable-always-build-tests )
|
||||
- make CFLAGS="-Wall -Werror -Werror=declaration-after-statement"
|
||||
- make install
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue