Replaced the global text_object array and count with a text_object_list
[monky] / README.svn-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 a SVN checkout:
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 * In the directory where you checked out conky from SVN,
19         run "aclocal", "automake", and then "autoconf".
20         Make sure you run those commands with the latest versions...
21         it is very possible that older versions are installed, and
22         plain "automake" really means automake-1.4, not what we want,
23         but "automake-1.9" instead.
24         Use the "--version" option to check the program version, i.e.
25         "autoconf --version".
26
27         You can also try using the autogen.sh script, like so:
28
29         $ sh autogen.sh
30
31 * After that, it's the familiar
32
33         $ ./configure
34         $ make
35         # make install
36
37         You might have to do the last step as root.