1 | $Id: README 136 2006-08-03 19:00:27Z jari $ |
---|
2 | |
---|
3 | ====================================================================== |
---|
4 | Copyright (C) 2005, 2006 Jari Häkkinen |
---|
5 | |
---|
6 | This file is part of svnstat, http://lev.thep.lu.se/trac/svnstat |
---|
7 | |
---|
8 | svnstat is free software; you can redistribute it and/or modify it |
---|
9 | under the terms of the GNU General Public License as published by the |
---|
10 | Free Software Foundation; either version 2 of the License, or (at your |
---|
11 | option) any later version. |
---|
12 | |
---|
13 | svnstat is distributed in the hope that it will be useful, but WITHOUT |
---|
14 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
---|
15 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
---|
16 | for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU General Public License |
---|
19 | along with this program; if not, write to the Free Software |
---|
20 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
---|
21 | USA. |
---|
22 | ====================================================================== |
---|
23 | |
---|
24 | |
---|
25 | 1 Prerequisites |
---|
26 | |
---|
27 | i) Subversion development files, i.e., header files and program |
---|
28 | libraries, version 1.4 or later. |
---|
29 | |
---|
30 | ii) Gnuplot. |
---|
31 | |
---|
32 | iii) A standard C++ compliant compiler with one extension: svnstat |
---|
33 | must be compiled with a C++ compiler that supports 'long long' |
---|
34 | types - GCC does this. This is due to the fact that one of the |
---|
35 | underlying libraries, apr, is using 'long long'. apr is written in |
---|
36 | C and the C standard allows 'long long'. |
---|
37 | |
---|
38 | Even though the source is compiled with the -pedantic flag (which |
---|
39 | should catch the non C++ standard 'long long') there is another |
---|
40 | flag to suppress 'long long' diagnostics, -Wno-long-long. |
---|
41 | |
---|
42 | |
---|
43 | 2 Compilation and installation |
---|
44 | |
---|
45 | See INSTALL for instructions on how to compile and install svnstat. |
---|
46 | |
---|
47 | |
---|
48 | 3 Acknowledgements |
---|
49 | |
---|
50 | svnstat uses a C++ interface to Gnuplot inspired by Rajarshi Guha. |
---|
51 | |
---|
52 | Rajarshi Guha's "A C++ Interface to Gnuplot" can be found through |
---|
53 | http://jijo.cjb.net/ . The C++ interface is based on "gnuplot |
---|
54 | interfaces in ANSI C" written by Nicolas Devillard. The C implemention |
---|
55 | is available through http://ndevilla.free.fr/ . |
---|