2005-06-24 17:53:01 -04:00
|
|
|
-*- text -*-
|
|
|
|
GNU Wget Installation Procedure
|
|
|
|
===============================
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2005-06-24 17:53:01 -04:00
|
|
|
0. Preparation
|
|
|
|
--------------
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
To build and install GNU Wget, you need to unpack the archive (which
|
|
|
|
you have presumably done, since you are reading this), and read on.
|
|
|
|
Like most GNU utilities, Wget uses the GNU Autoconf mechanism for
|
2005-06-24 17:53:01 -04:00
|
|
|
build and installation; users familiar with compiling GNU software
|
|
|
|
should feel at home.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2005-06-24 17:53:01 -04:00
|
|
|
Note that instructions in this file do not pertain to installation on
|
|
|
|
Windows, for which see windows/README.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2005-06-24 17:53:01 -04:00
|
|
|
1. Configuration
|
|
|
|
----------------
|
|
|
|
|
|
|
|
Before compiling Wget, you need to "configure" it using the provided
|
|
|
|
`configure' script. Configuration serves two purposes: it enables the
|
|
|
|
compilation system to inspect certain features of your operating
|
|
|
|
system for more robust compilation, and it enables you to choose which
|
|
|
|
features you want the resulting Wget to have.
|
|
|
|
|
|
|
|
The simplest way to configure Wget is by running the configure script
|
|
|
|
provided with the distribution without additional arguments. After
|
|
|
|
running some programming-related tests, it will create the Makefiles
|
|
|
|
needed to compile Wget. If you have experience with Autoconf-based
|
|
|
|
build systems, you may use the standard arguments such configure
|
|
|
|
scripts take, the most important ones being:
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2005-05-02 08:28:26 -04:00
|
|
|
--help display a help message and exit
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
--prefix=PREFIX install architecture-independent files in PREFIX
|
|
|
|
(/usr/local by default)
|
|
|
|
--bindir=DIR user executables in DIR (PREFIX/bin)
|
|
|
|
--infodir=DIR info documentation in DIR [PREFIX/info]
|
|
|
|
--mandir=DIR man documentation in DIR [PREFIX/man]
|
|
|
|
|
2005-06-24 17:53:01 -04:00
|
|
|
For example, if you are not root and want to install Wget in your home
|
|
|
|
directory, you can use:
|
|
|
|
|
|
|
|
./configure --prefix=$HOME
|
|
|
|
|
|
|
|
Options beginning with "--disable", such as `--disable-opie' or
|
|
|
|
`--disable-ntlm', allow you to turn off certain built-in functionality
|
|
|
|
you don't need in order to reduce the size of the executable. Options
|
|
|
|
beginning with "--with" turning off autodetection and use of external
|
|
|
|
software Wget can link with, such as the SSL libraries. Recognized
|
|
|
|
"--enable" and "--with" options include:
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2005-06-24 17:53:01 -04:00
|
|
|
--without-ssl disable SSL autodetection (used for https support)
|
|
|
|
--with-libssl-prefix=DIR search for libssl in DIR/lib
|
1999-12-02 02:42:23 -05:00
|
|
|
--disable-opie disable support for opie or s/key FTP login
|
|
|
|
--disable-digest disable support for HTTP digest authorization
|
2005-04-28 06:13:22 -04:00
|
|
|
--disable-ntlm disable support for HTTP NTLM authorization
|
1999-12-02 02:42:23 -05:00
|
|
|
--disable-debug disable support for debugging output
|
|
|
|
--disable-nls do not use Native Language Support
|
2005-03-19 12:25:44 -05:00
|
|
|
--disable-largefile omit support for large files
|
|
|
|
--disable-ipv6 disable IPv6 support
|
2005-06-24 17:53:01 -04:00
|
|
|
--disable-rpath do not hardcode runtime library paths
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2005-06-24 17:53:01 -04:00
|
|
|
You can inspect the decisions made by configure by editing the
|
|
|
|
generated Makefiles and the `src/config.h' include file. The defaults
|
|
|
|
should work without intervention, but if you know what you are doing,
|
|
|
|
editing the generated files before compilation is fine -- they will
|
|
|
|
not be regenerated until you run configure again.
|
2005-05-02 08:28:26 -04:00
|
|
|
|
|
|
|
configure will try to find a compiler in your PATH, defaulting to
|
|
|
|
`gcc', but falling back to `cc' if the former is unavailable. This is
|
|
|
|
a reasonable default on most Unix-like systems, but sometimes you
|
2005-06-24 17:53:01 -04:00
|
|
|
might want to override it. The compiler choice is overridden by
|
|
|
|
setting the `CC' environment variable to the desired compiler file
|
|
|
|
name. For example, to force compilation with the Unix `cc' compiler,
|
|
|
|
invoke configure like this:
|
2005-05-02 08:28:26 -04:00
|
|
|
|
|
|
|
./configure CC=cc
|
|
|
|
|
2005-06-24 17:53:01 -04:00
|
|
|
This assumes that `cc' is in your path -- if it is not, simply use
|
|
|
|
CC=/path/to/cc instead. Note that environment variables that affect
|
|
|
|
configure can be set with the usual shell syntax `VAR=value
|
|
|
|
./configure' (assuming sh syntax), but can also be specified as
|
|
|
|
arguments to configure, as shown above. The latter method, while
|
|
|
|
being specific to configure, works unmodified in all shells.
|
|
|
|
|
|
|
|
Environment variables that affect `configure' include: CFLAGS for C
|
|
|
|
compiler flags, CPPFLAGS for C preprocessor flags, LDFLAGS for linker
|
|
|
|
flags, and LIBS for libraries.
|
|
|
|
|
|
|
|
Barring a the use of --without-* flags, configure will try to
|
|
|
|
autodetect certain external libraries needed by Wget, currently only
|
|
|
|
the OpenSSL libraries. If they are installed in the system library
|
|
|
|
directories or in the same prefix where you plan to install Wget,
|
|
|
|
configure should be able to autodetect them. If they are installed
|
|
|
|
elsewhere, use the `--with-libNAME' option to specify the root
|
|
|
|
directory under which libraries reside in the `lib/' subdirectory and
|
|
|
|
the corresponding header files reside in the `include/' subdirectory.
|
|
|
|
For example, if the OpenSSL libraries are installed under the
|
|
|
|
/usr/local/ssl prefix, use `--with-libssl=/usr/local/ssl'.
|
|
|
|
|
|
|
|
Sometimes external libraries will be installed on the system, but the
|
|
|
|
header files will be missing, which happens on Linux if you forget to
|
|
|
|
install the "-devel" or "-dev" package that corresponds to the library
|
|
|
|
and that is typically *not* installed by default. In that case
|
|
|
|
configure will not find the library and you will not be able to use
|
|
|
|
the features provided by the library until you install the devel
|
|
|
|
package and rerun configure. If you have all the necessary headers,
|
|
|
|
but configure still fails to detect the library, report a bug.
|
|
|
|
|
|
|
|
2. Compilation
|
|
|
|
--------------
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2005-05-02 08:28:26 -04:00
|
|
|
To compile GNU Wget after it has been configured, simply type make.
|
2005-06-24 17:53:01 -04:00
|
|
|
Wget requires a compiler and standard library compliant with the 1990
|
|
|
|
ISO C standard, which includes the vast majority of compilation
|
|
|
|
environments present on systems in use today.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2005-05-02 08:28:26 -04:00
|
|
|
After the compilation a ready-to-use `wget' executable should reside
|
|
|
|
in the src directory. At this point there is no formal test suite for
|
|
|
|
testing the binary, but it should be easy enough to test whether the
|
|
|
|
basic functionality works.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2005-06-24 17:53:01 -04:00
|
|
|
3. Installation
|
|
|
|
---------------
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
Use `make install' to install GNU Wget to directories specified to
|
2005-05-02 08:34:03 -04:00
|
|
|
configure. To install it in a system directory (which is the
|
|
|
|
default), you will need to be root. The standard prefix is
|
|
|
|
"/usr/local/", which can be changed using the `--prefix' configure
|
|
|
|
option.
|
2005-03-19 12:25:44 -05:00
|
|
|
|
|
|
|
The installation process will copy the wget binary to $PREFIX/bin,
|
2005-05-02 08:28:26 -04:00
|
|
|
install the wget.info* info pages to $PREFIX/info, the generated
|
2005-03-19 12:25:44 -05:00
|
|
|
manual page (where available) wget.1 to $PREFIX/man/man1, and the
|
|
|
|
default config file to $PREFIX/etc, unless a config file already
|
|
|
|
exists there. You can customize these directories either through the
|
1999-12-02 02:42:23 -05:00
|
|
|
configuration process or making the necessary changes in the Makefile.
|
|
|
|
|
2005-05-02 08:28:26 -04:00
|
|
|
To delete the files created by Wget installation, you can use `make
|
|
|
|
uninstall'.
|