]> Pileus Git - ~andy/gtk/blob - INSTALL.in
Fix version numbers. (Johan Dahlin.)
[~andy/gtk] / INSTALL.in
1 Prerequisites
2 =============
3
4 GTK+ requires the following packages:
5
6  - The GLib, Pango, and Atk libraries, available at the same location as GTK+
7
8  - The TIFF, PNG, and JPEG image loading libraries. You most
9    likely have these installed on your system already. If not
10    these libraries are available from:
11
12     http://www.libtiff.org/
13     ftp://swrinde.nde.swri.edu/pub/png/src/
14     ftp://ftp.uu.net/graphics/jpeg/
15
16    If these libraries are not available, the corresponding 
17    image loaders will simply not be built. However, this
18    may cause applications using GTK+ not to function properly.
19
20 Simple install procedure
21 ========================
22
23   % gzip -cd gtk+-@GTK_VERSION@.tar.gz | tar xvf - # unpack the sources
24   % cd gtk+-@GTK_VERSION@                          # change to the toplevel directory
25   % ./configure                            # run the `configure' script
26   % make                                   # build GTK
27   [ Become root if necessary ]
28   % make install                           # install GTK
29
30 The Details
31 ===========
32
33 Complete information about installing GTK+ and related libraries can be found 
34 in the file:
35
36  docs/reference/gtk/docs/reference/gtk/html/gtk-building.html
37
38 Or online at:
39
40  http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html
41