]> sjero.net Git - wget/blob - INSTALL
[svn] Commit administrative changes in preparation for the 1.7
[wget] / INSTALL
1                                                                    -*- text -*-
2                         Installation Procedure
3
4 0) Preparation
5
6 To build and install GNU Wget, you need to unpack the archive (which
7 you have presumably done, since you are reading this), and read on.
8 Like most GNU utilities, Wget uses the GNU Autoconf mechanism for
9 build and installation; those of you familiar with compiling GNU
10 software will feel at home.
11
12 1) Configuration
13
14 To configure Wget, run the configure script provided with the
15 distribution.  You may use all the standard arguments configure
16 scripts take.  The most important ones are:
17
18   --help                  print help message
19
20   --prefix=PREFIX         install architecture-independent files in PREFIX
21                           (/usr/local by default)
22   --bindir=DIR            user executables in DIR (PREFIX/bin)
23   --infodir=DIR           info documentation in DIR [PREFIX/info]
24   --mandir=DIR            man documentation in DIR [PREFIX/man]
25
26   --build=BUILD           configure for building on BUILD [BUILD=HOST]
27   --host=HOST             configure for HOST [guessed]
28   --target=TARGET         configure for TARGET [TARGET=HOST]
29
30 --enable and --with options recognized (mostly Wget-specific):
31   --with-socks            use the socks library
32   --with-ssl[=SSL_ROOT]   link with libssl [in SSL_ROOT/lib] for https: support
33   --disable-opie          disable support for opie or s/key FTP login
34   --disable-digest        disable support for HTTP digest authorization
35   --disable-debug         disable support for debugging output
36   --disable-nls           do not use Native Language Support
37
38 So, if you want to configure Wget for installation in your home
39 directory, you can type:
40 ./configure --prefix=$HOME
41
42 You can customize many default settings by editing Makefile and
43 config.h.  The program will work very well without your touching these
44 files, but it is useful to have a look at things you can change there.
45
46 If you use socks, it is useful to add -L/usr/local/lib (or wherever
47 the socks library is installed) to LDFLAGS in Makefile.
48
49 If you have OpenSSL libraries installed in one of the default
50 directories, such as /usr/local/lib or /usr/local/ssl/lib, you can
51 simply `configure --with-ssl'.  If you have it installed elsewhere,
52 you need to specify your alternate OpenSSL root directory.  For
53 instance, if libcrypto.* and libssl.* are in /opt/openssl/lib, you
54 need to `configure --with-ssl=/opt/openssl'.
55
56 To configure Wget on Windows, run configure.bat and follow the
57 instructions in the windows/ directory.  If this doesn't work for any
58 reason, talk to the Windows developers listed in `windows/README'; I
59 do not maintain the port.
60
61 2) Compilation
62
63 To compile the program, type make and cross your fingers.  If you do
64 not have an ANSI compiler, Wget will try to KNR-ize its sources "on
65 the fly".  This should make GNU Wget compilable virtually anywhere.
66
67 After the compilation a ready to use `wget' executable should reside
68 in the src directory.  I do not have any kind of test-suite as of this
69 moment, but it should be easy enough to test whether the basic stuff
70 works.
71
72 3) Installation
73
74 Use `make install' to install GNU Wget to directories specified to
75 configure (/usr/local/* by default).
76
77 The standard installation process will copy the wget binary to
78 /usr/local/bin, install the info pages (wget.info*) to
79 /usr/local/info.  You can customize the directories either through the
80 configuration process or making the necessary changes in the Makefile.
81
82 To delete the files created by Wget installation, you can use make
83 uninstall.