Fix for segfault in top_name stuff.
[monky] / README.git-version
1 QUICK & EASY:
2         $ sh autogen.sh
3         $ ./configure
4         $ make
5         $ ./src/conky # to run Conky
6         # make install
7
8 First, read the README. This contains instructions specific to building conky
9 fresh from the git repo:
10
11 * Conky requires three "auto-tools", with at least the specific version numbers.
12         Make sure these are installed:
13
14         aclocal-1.9
15         automake-1.9
16         autoconf-2.59
17
18 * NOTE: You may also need to install docbook2X for generating the
19         documentation.  Conky will check for the following programs in PATH during
20         configuration:
21
22         db2x_xsltproc
23         db2x_manxml
24         xsltproc
25
26 * In the directory where you cloned conky from git,
27         run "aclocal", "automake", and then "autoconf".
28         Make sure you run those commands with the latest versions...
29         it is very possible that older versions are installed, and
30         plain "automake" really means automake-1.4, not what we want,
31         but "automake-1.9" instead.
32         Use the "--version" option to check the program version, i.e.
33         "autoconf --version".
34
35         You can also try using the autogen.sh script, like so:
36
37         $ sh autogen.sh
38
39 * After that, it's the familiar
40
41         $ ./configure
42         $ make
43         # make install
44
45         You might have to do the last step as root.