Last active
March 7, 2017 18:33
-
-
Save Kibur/98edd9ddcbd5a23f218a to your computer and use it in GitHub Desktop.
Make HexChat on Raspberry PI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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!