summaryrefslogtreecommitdiff
path: root/HACKING
blob: d1dd4261387c4bc2658da32c45ab4df37ff845f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
The git version of GEGL is known to work with the following autotools:

- GNU autoconf 2.54
- GNU automake 1.9.6
- GNU libtool 1.5

Newer versions of these tools will probably work.

To compile a git version of GEGL on your system, you will need to take
several steps to setup the tree for compilation.  You can do all these
steps at once by running:

gegl> ./autogen.sh
   
Basically this does the following for you (but see autogen.sh for
exactly what is happening):

gegl> aclocal 
gegl> automake 
gegl> autoconf 
gegl> configure

The autogen in GEGL also uses ruby to generate some of the plug-ins, and
the API reference.

Before running autogen.sh, make sure you have libtool in your path.  

Note that autogen.sh runs configure for you. If you wish to pass options 
to configure you can give those options to autogen.sh and they
will be passed on.