]> Pileus Git - ~andy/gtk/blob - HACKING
Updated package versions
[~andy/gtk] / HACKING
1 If you want to hack on the Gtk+ project, it will make you life easier
2 to have the following packages installed:
3
4         - GNU autoconf 2.12
5         - GNU automake 1.3
6                 (Beta releases are at ftp://ftp.cygnus.com/pub/tromey)
7         - GNU libtool 1.2
8
9 These should be available by ftp from ftp.gnu.org or any of the
10 fine GNU mirrors.  Beta software can be found at alpha.gnu.org.
11
12 If you are accessing gtk+ via CVS, then you will need to take several
13 steps to get it to compile.  You can do all these steps at once
14 by running:
15
16         cvsroot/gtk+# ./autogen.sh
17    
18 Basically this does the following for you:
19
20         cvsroot/gtk+# aclocal; automake; autoconf
21         cvsroot/gtk+/glib# aclocal; automake; autoconf
22
23         The above commands create the "configure" script.  Now you
24         can run the configure script in cvsroot/gtk+ to create all
25         the Makefiles.  You only need to call "configure" in cvsroot/gtk+ 
26         as the one in glib will be invoked automatically.
27
28 Before running autogen.sh or configure, make sure you have libtool 
29 in your path.  
30
31 Note that autogen.sh runs configure for you.  If you wish to pass
32 options like --prefix=/usr to configure you can give those options
33 to autogen.sh and they will be passed on to configure.
34
35 If at all possible, please use CVS to get the latest development version of
36 gtk+.  You can do the following to get gtk+ from cvs:
37
38    $ export CVSROOT=':pserver:anonymous@cvs.gimp.org:/debian/home/gnomecvs'
39    $ cvs login
40      (there is no password, just hit return)
41    $ cvs -z9 checkout gtk+
42
43 Please submit patches to the gtk-list@redhat.com mailing list (you must
44 subscribe before you post, e-mail gtk-list-request@redhat.com with a
45 subject of "subscribe"). All kinds of contributions are accepted.
46 Patches that you wish to go into the distribution should also be uploaded 
47 to ftp://ftp.gimp.org/incoming.  Follow the rules there for naming your
48 patches. 
49