How To Install gtk+ with key tables


Useful links on this page:
  1. http://www.gtk.org/
  2. gtk+-1.2.10-keytable patch

  1. Get the gtk+-1.2.10 source from http://www.gtk.org/. Sorry, but I wrote it off of the latest stable. ;)
  2. Get the gtk+-1.2.10-keytable patch from the link in this sentence.
  3. Expand the gtk source into your directory of choice with the command
    tar zxvf gtk+-1.2.10.tar.gz
  4. 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.
  5. 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.