Blame HACKING

Packit ae235b
If you want to hack on the GLib project, you'll need to have the
Packit ae235b
following packages installed:
Packit ae235b
Packit ae235b
        - GNU autoconf 2.62
Packit ae235b
        - GNU automake 1.11
Packit ae235b
        - GNU libtool 2.2
Packit ae235b
        - GNU gettext 0.10.40
Packit ae235b
        - pkg-config 0.16
Packit ae235b
        - gtk-doc
Packit ae235b
        - libffi 3.0.0
Packit ae235b
Packit ae235b
These should be available by ftp from ftp.gnu.org or any of the
Packit ae235b
fine GNU mirrors.  Beta software can be found at alpha.gnu.org.
Packit ae235b
Packit ae235b
To compile a GIT version of glib on your system, you will need to take
Packit ae235b
several steps to setup the tree for compilation.  You can do all these
Packit ae235b
steps at once by running:
Packit ae235b
Packit ae235b
        checkout/glib# ./autogen.sh
Packit ae235b
Packit ae235b
Basically this does the following for you:
Packit ae235b
Packit ae235b
        checkout/glib# aclocal; automake; autoconf
Packit ae235b
Packit ae235b
        The above commands create the "configure" script.  Now you
Packit ae235b
        can run the configure script in checkout/glib to create all
Packit ae235b
        the Makefiles.
Packit ae235b
Packit ae235b
Before running autogen.sh or configure, make sure you have libtool
Packit ae235b
in your path.
Packit ae235b
Packit ae235b
Note that autogen.sh runs configure for you.  If you wish to pass
Packit ae235b
options like --prefix=/usr to configure you can give those options
Packit ae235b
to autogen.sh and they will be passed on to configure.
Packit ae235b
Packit ae235b
For information about submitting patches see the README.commits file. For
Packit ae235b
information about major design decisions, see the README.rationale file.