How To Install gtk+ with key tables
Useful links on this page:
- http://www.gtk.org/
- gtk+-1.2.10-keytable patch
- Get the gtk+-1.2.10 source from http://www.gtk.org/. Sorry, but I wrote it off of the latest stable. ;)
- Get the gtk+-1.2.10-keytable patch from the link in this sentence.
- Expand the gtk source into your directory of choice with the command
tar zxvf gtk+-1.2.10.tar.gz
- Patch the source tree to include key tables using something like
$cd gtk+-1.2.10
$zcat ../gtk+-1.2.10-keytable.patch.gz | patch -p1
where '../' is the path to wherever you put the patch.
- configure, compile, and install the new gtk+:
$./configure --prefix=/usr
$make
$make install
Where '/usr' is the base of the gtk library install (it is /usr on most systems I use). Make sure you are root when you 'make install' or it will yell at you and not work.