[84] | 1 | $Id: README 162 2006-08-19 23:01:59Z jari $ |
---|
[26] | 2 | |
---|
[122] | 3 | ====================================================================== |
---|
[84] | 4 | Copyright (C) 2005, 2006 Jari Häkkinen |
---|
| 5 | |
---|
[149] | 6 | This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest |
---|
[84] | 7 | |
---|
[149] | 8 | svndigest is free software; you can redistribute it and/or modify it |
---|
[84] | 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 | |
---|
[149] | 13 | svndigest is distributed in the hope that it will be useful, but |
---|
| 14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 16 | General Public License for more details. |
---|
[84] | 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. |
---|
[122] | 22 | ====================================================================== |
---|
[84] | 23 | |
---|
| 24 | |
---|
[136] | 25 | 1 Prerequisites |
---|
[26] | 26 | |
---|
[162] | 27 | ia) Subversion development files, i.e., header files and program |
---|
[136] | 28 | libraries, version 1.4 or later. |
---|
| 29 | |
---|
[162] | 30 | ib) This item should not be an issue if item ia) is fulfilled; the |
---|
| 31 | Apache Portable Runtime (APR) should be available if the subversion |
---|
| 32 | API was succesfully compiled. Subversion depends on APR and in |
---|
| 33 | consequence, the dependency is inherited by svndigest. |
---|
| 34 | |
---|
[136] | 35 | ii) Gnuplot. |
---|
| 36 | |
---|
[149] | 37 | iii) A standard C++ compliant compiler with one extension: svndigest |
---|
[136] | 38 | must be compiled with a C++ compiler that supports 'long long' |
---|
| 39 | types - GCC does this. This is due to the fact that one of the |
---|
[162] | 40 | underlying libraries, APR, is using 'long long'. APR is written in |
---|
[136] | 41 | C and the C standard allows 'long long'. |
---|
| 42 | |
---|
| 43 | Even though the source is compiled with the -pedantic flag (which |
---|
| 44 | should catch the non C++ standard 'long long') there is another |
---|
| 45 | flag to suppress 'long long' diagnostics, -Wno-long-long. |
---|
| 46 | |
---|
| 47 | |
---|
| 48 | 2 Compilation and installation |
---|
| 49 | |
---|
[149] | 50 | See INSTALL for instructions on how to compile and install svndigest. |
---|
[136] | 51 | |
---|
| 52 | |
---|
| 53 | 3 Acknowledgements |
---|
| 54 | |
---|
[149] | 55 | svndigest uses a C++ interface to Gnuplot inspired by Rajarshi Guha. |
---|
[26] | 56 | |
---|
| 57 | Rajarshi Guha's "A C++ Interface to Gnuplot" can be found through |
---|
| 58 | http://jijo.cjb.net/ . The C++ interface is based on "gnuplot |
---|
| 59 | interfaces in ANSI C" written by Nicolas Devillard. The C implemention |
---|
| 60 | is available through http://ndevilla.free.fr/ . |
---|
[162] | 61 | |
---|
| 62 | svndigest build system uses an M4 macro (build_support/find_apr.m4) |
---|
| 63 | created within the Apache project (The Apache Software Foundation). No |
---|
| 64 | changes is made to the M4 script. The apache license text is available |
---|
| 65 | as buid_support/apache_LICENSE-2.0.txt. |
---|