diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2004-06-19 02:39:07 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2004-06-19 02:39:07 +0000 |
commit | f4f4b5ff37b19df733987670a5689e3f49de55ca (patch) | |
tree | ef8a15db67d348907cc4abc0e1701046d04fa313 /README.svn | |
parent | 7127ff22e388f29f217f125ac9ef11dd4f5a84b4 (diff) | |
download | fetchmail-f4f4b5ff37b19df733987670a5689e3f49de55ca.tar.gz fetchmail-f4f4b5ff37b19df733987670a5689e3f49de55ca.tar.bz2 fetchmail-f4f4b5ff37b19df733987670a5689e3f49de55ca.zip |
This is the large automake/gettext commit.
It cleans up the whole build system and drops generated files
such as intl/ and some from po/.
The package version is moved to configure.in.
HTML -> txt conversion is now done in html2txt.sh
To bootstrap the package, read README.svn, make sure
you have all prerequisite packages installed, then
run ./bootstrap.sh.
svn path=/trunk/; revision=3907
Diffstat (limited to 'README.svn')
-rw-r--r-- | README.svn | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/README.svn b/README.svn new file mode 100644 index 00000000..8738af18 --- /dev/null +++ b/README.svn @@ -0,0 +1,31 @@ +In order to be able to build from the subversion repository (working +directory), some files need to be (re-)generated. + +Note that these generated files will be shipped with "make dist", +so the end user will not need these packages. + +The prerequisite packages are: + +- GNU autoconf >= 2.54 +- GNU automake >= 1.7 +- GNU gettext >= 0.13 +- GNU m4 +- bison or yacc +- flex or lex + +If you have these installed, type: + +$ rm -r -f autom4te.cache +$ autoreconf -i -s + +This will take a while and may print a lot of messages containing +"warning: unquoted definition of..." which are harmless. + +After that, build as usual, with + +$ ./configure --with-options +$ make +(become root) +# make install-strip + +-- Matthias Andree, 2004-06-18 |