1999-12-02 02:42:23 -05:00
|
|
|
-*- text -*-
|
|
|
|
|
2004-02-12 13:09:10 -05:00
|
|
|
You can configure the Windows port of Wget by running configure.bat (in
|
|
|
|
the main Wget directory). You can run it with no arguments to see the
|
|
|
|
list of possible options. Run it with the option corresponding to the
|
|
|
|
compiler you intend to use to build Wget and follow the (brief)
|
|
|
|
instructions printed on the screen. The instructions bellow are for
|
|
|
|
building Wget with Microsoft Visual C++ (MSVC); you may need to make
|
2005-04-28 06:11:39 -04:00
|
|
|
appropriate substitutions for your compiler and build environment;
|
2005-06-23 10:11:48 -04:00
|
|
|
currently wget can be built at least with Visual Studio/.Net, the free
|
2005-06-24 17:52:38 -04:00
|
|
|
Borland compiler, and the free mingw environment. The instructions do
|
|
|
|
*not* apply to the Cygwin environment, on which Wget is built with the
|
|
|
|
procedure described in the INSTALL file in the top-level directory.
|
2004-02-12 13:09:10 -05:00
|
|
|
|
|
|
|
To build Wget with MSVC run configure.bat (in the main Wget directory)
|
|
|
|
with the argument --msvc, and then run nmake. At a certain point in time
|
2005-04-28 06:11:39 -04:00
|
|
|
Wget exposed some compiler bugs in MSVC 5.0; later Wget started to
|
|
|
|
expose (at least http.c, retr.c) some other compiler bugs in MSVC 6.0
|
|
|
|
SP6 (cl.exe version 12) which could/can be worked around by compiling
|
|
|
|
completely without optimization or at least partially (by using
|
|
|
|
#pragma optimize("g",on) and "off" around offending functions).
|
|
|
|
However, read the rest of this document before continuing.
|
2004-02-12 13:09:10 -05:00
|
|
|
|
|
|
|
For MSVC the current default is to build Wget with SSL support. For this
|
|
|
|
to work, you will need to have OpenSSL installed. First, get OpenSSL
|
|
|
|
(http://www.openssl.org), compile it and install the relevant headers and
|
|
|
|
libraries where your compiler can find them; currently this could mean
|
|
|
|
(presuming default installation directories for MSVC 6.0) copy (from the
|
|
|
|
compiled OpenSSL directory) the whole inc32\openssl directory and its
|
|
|
|
contents to "C:\Program Files\Microsoft Visual Studio\VC98\Include\openssl",
|
|
|
|
and from out32dll (in the OpenSSL directory) the two needed libraries
|
|
|
|
(libeay32.lib and ssleay32.lib) to
|
|
|
|
"C:\Program Files\Microsoft Visual Studio\VC98\lib". These locations
|
|
|
|
aren't exactly the best but will get you started if you don't know where
|
2005-04-28 06:11:39 -04:00
|
|
|
to place these headers and libraries, you should find similar paths for
|
|
|
|
later compiler versions. Usually at run-time some OpenSSL
|
2004-02-12 13:09:10 -05:00
|
|
|
libraries (currently ssleay32.dll and libeay32.dll) will need to be
|
|
|
|
available in your environment PATH.
|
|
|
|
|
|
|
|
If you don't want to/can't compile Wget with OpenSSL comment SSL related
|
|
|
|
lines in windows\Makefile.src; then follow the normal instructions
|
|
|
|
(configure.bat and so on).
|
2001-11-22 12:22:19 -05:00
|
|
|
|
|
|
|
If you want to build the help file you will need a copy of makeinfo to
|
2004-02-12 13:09:10 -05:00
|
|
|
convert wget.texi to rtf and html. I've made a copy available at
|
2001-11-22 12:22:19 -05:00
|
|
|
<URL:ftp://sunsite.dk/projects/wget/makeinfo.zip>. This copy of
|
2004-02-12 13:09:10 -05:00
|
|
|
makeinfo is from the miktxt 1.10 archive available from ctan. You also
|
|
|
|
will need perl 5, one possibility is ActivePerl (currently free) from
|
2001-11-22 12:22:19 -05:00
|
|
|
<URL:http://www.activestate.com>; you need to locate the download and
|
|
|
|
install instructions for the current version available (since the
|
|
|
|
packages and installation instructions change from time to time).
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
Windows contributors:
|
|
|
|
|
|
|
|
* Darko Budor <dbudor@zesoi.fer.hr> -- the initial work on the Windows
|
|
|
|
port;
|
|
|
|
|
|
|
|
* Tim Charron <tcharron@interlog.com> -- additional cleanup and
|
2005-06-23 10:11:48 -04:00
|
|
|
contribution of the (now retired) Watcom makefile;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
* John Burden <john@futuresguide.com> -- cleanup of the VC++ makefile
|
|
|
|
to get a clean build with VC++ 5.0 on Windows 95;
|
|
|
|
|
|
|
|
* Douglas E. Wegscheid -- maintains configure.bat and various Windows
|
|
|
|
makefiles.
|
2003-10-31 09:31:56 -05:00
|
|
|
|
|
|
|
* Herold Heiko -- numerous build reports and fixes.
|
|
|
|
|
|
|
|
* Gisle Vanem -- many Windows-related improvements to the source and
|
|
|
|
the build system.
|