Skip to content

Instantly share code, notes, and snippets.

@Kibur
Last active March 7, 2017 18:33
Show Gist options
  • Save Kibur/98edd9ddcbd5a23f218a to your computer and use it in GitHub Desktop.
Save Kibur/98edd9ddcbd5a23f218a to your computer and use it in GitHub Desktop.
Make HexChat on Raspberry PI
Originally from: https://www.raspberrypi.org/forums/viewtopic.php?t=83067&p=587189
Connecting to IRC servers with SSL:
apt-get install gnome-common libglib2.0-dev libgtk2.0-dev libssl-dev
Enable Python2.x or Python3.x plugin:
apt-get install python2.7-dev
apt-get install python3.2-dev
Download: https://github.com/hexchat/hexchat/archive/master.tar.gz
tar -zxvf master.tar.gz
cd hexchat-master
./autogen.sh
./configure --enable-openssl=/usr/include/openssl --enable-python=<python2.7/python3.3>
make
make install
After running configure you should see this:
GTK+ interface ........ : yes
Text interface ........ : no
Theme manager ......... : no
OpenSSL support ....... : yes
D-Bus support ......... : no
libnotify support ..... : no
libcanberra support ... : no
Plugin interface ...... : yes
IPv6 support .......... : yes
MS Proxy NTLM (ISA) ... : no
libproxy support ...... : no
Perl .................. : no
Python ................ : python-2.7/python-3.2
Checksum .............. : yes
Do At ................. : yes
FiSHLiM ............... : yes
SysInfo ............... : no
@simplyandyg
Copy link

simplyandyg commented Nov 27, 2016

I can't get the autogen.sh script to run. I keep getting the following errors:

autom4te: /usr/bin/m4 failed with exit status: 1
aclocal: error: echo failed with exit status: 1
autoreconf: aclocal failed with exit status: 1

Any ideas?

EDIT: Never mind. I just found that this can be installed using: apt-get install hexchat

Awesome, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment