Skip to content

Instantly share code, notes, and snippets.

@gandaro
Created July 28, 2012 17:41
Show Gist options
  • Save gandaro/3194136 to your computer and use it in GitHub Desktop.
Save gandaro/3194136 to your computer and use it in GitHub Desktop.
Installing HexChat on Ubuntu

How to Build HexChat on Ubuntu

Install automake, libtool, glib, GTK+ and libxml2 (for Python plugin support you also need python-dev):

# apt-get install automake1.10 libtool libglib2.0-dev libgtk2.0-dev libxml2-dev

Create the configure script:

$ ./autogen.sh

Run the configure script (I do not need Perl, so I simply disabled it; I can help you installing the needed packages though):

$ ./configure --disable-perl

Run make:

$ make

Install it (without -strip you would install HexChat including debugging symbols etc.):

# make install-strip
@scribnermj
Copy link

This guide fails for Ubuntu 16.04
Anyone know what needs to be changed?

see below:
sudo ./autogen.sh
m4/glib-gettext.m4:39: error: m4_copy: won't overwrite defined macro: glib_DEFUN
m4/glib-gettext.m4:39: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
aclocal: error: echo failed with exit status: 1

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