1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] README.cvs: Falsely claimed you only needed GNU autoconf to build from the CVS

sources.  You also need GNU gettext and texinfo.  I also did a bunch of general
re-writing of this file.
This commit is contained in:
dan 2001-01-06 02:15:58 -08:00
parent cbe2ca1b80
commit 2204604381
2 changed files with 23 additions and 21 deletions

View File

@ -7,6 +7,10 @@
* README.branches: Explains the 1.6_branch.ChangeLog files. * README.branches: Explains the 1.6_branch.ChangeLog files.
* README.cvs: Falsely claimed you only needed GNU autoconf to
build from the CVS sources. You also need GNU gettext and
texinfo. I also did a bunch of general re-writing of this file.
2001-01-03 Dan Harkless <wget@harkless.org> 2001-01-03 Dan Harkless <wget@harkless.org>
* TODO: We should make a simple man page referring to info doco. * TODO: We should make a simple man page referring to info doco.
@ -47,6 +51,8 @@
* windows/Makefile.in: New file. * windows/Makefile.in: New file.
* README.cvs: New file.
2000-11-25 Karl Eichwalder <ke@suse.de> 2000-11-25 Karl Eichwalder <ke@suse.de>
* Makefile.in (SUBDIRS): Add 'windows'. * Makefile.in (SUBDIRS): Add 'windows'.

View File

@ -1,32 +1,28 @@
Important note: Important note:
To reduce bandwidth and needless updates, the CVS tree does not To reduce bandwidth and needless updates, the CVS tree does not
contain automatically generated files, even when those are normally contain automatically-generated files, even when those files are
present in the distribution tarballs. All of these are recreated by normally present in the distribution tarballs.
the build process, except for `configure', which is needed to start
the build in the first place.
To build Wget from the CVS sources, all you need aside from the normal Therefore, if you're building from the CVS sources, you'll need to
C development tools (make, cc) is Autoconf, which you can get from have GNU autoconf, gettext, and texinfo installed on your machine
<http://www.gnu.org/software/autoconf/autoconf.html>. Wget does not (these do the afore-mentioned automatic generation). The three
use Automake or Libtool, so you needn't worry about those. packages are available from <ftp://ftp.gnu.org/pub/gnu/<package>/> and
its mirrors (please choose one close to you), listed at
<http://www.gnu.org/order/ftp.html>.
For your convenience, Makefile.cvs is a make file containing the In case you aren't used to running autoconf manually to generate the
necessary preparations, which currently amount to calling Autoconf. necessary configure script, a file called Makefile.cvs has been
Invoke it with `make -f Makefile.cvs', and after that you're ready to provided, and may be called using `make -f Makefile.cvs'. Once the
build Wget in the normal fashion, e.g. with `./configure' followed by Makefile has called autoconf to generate the configure script, you can
`make'. build in the usual fashion.
The simplest example of downloading and building Wget from CVS can To summarize, once you've checked out wget from the CVS archive
look like this: (instructions for which can be found on the Development page of the
Wget website), the commands you'll execute will be as follows (barring
any extra options to `configure' or to the second `make'):
cvs -d :pserver:... checkout wget
cd wget cd wget
make -f Makefile.cvs make -f Makefile.cvs
./configure ./configure
make make
The instructions that explain how to check out Wget from CVS in the
first place are available at <http://sunsite.dk/wget/> under
"Development".