]> sjero.net Git - wget/blob - windows/README
[svn] Define WGET_USE_STDARG in windows/config.h.bor.
[wget] / windows / README
1                                                            -*- text -*-
2
3 To build Wget with VC++ run configure.bat (in the main wget directory), 
4 and then run nmake. At a certain point in time wget exposed some 
5 compiler bugs in VC++ 5.0; VC++ 6.0 sp 5 is known to be safe. However 
6 read the rest of this document before continuing.
7
8 For VC++ the current default is to configure wget with ssl support; 
9 first get openssl (http://www.openssl.org), compile it and install 
10 relevant headers and libraries where your compiler can find them; 
11 currently this could mean (presuming default installation directories) 
12 copy (from the compiled openssl dirctory) the whole inc32/openssl 
13 directory and its contents to 
14 "C:\Program Files\Microsoft Visual Studio\VC98\Include\openssl",
15 and from out32dll (in the openssl directory) the two needed libraries 
16 (libeay32.lib and ssleay32.lib) to 
17 "C:\Program Files\Microsoft Visual Studio\VC98\lib".
18 These locations aren't exactly the best but will get you started if you 
19 don't know where to place these headers and libraries.
20 Usually at runtime some openssl libraries (currently ssleay32.dll and
21 libeay32.dll) will need to be available in your environment PATH.
22
23 If you want to build the help file you will need a copy of makeinfo to
24 convert wget.texi to rtf and html. I've made a copy available at
25 <URL:ftp://sunsite.dk/projects/wget/makeinfo.zip>.  This copy of
26 makeinfo is from the miktxt 1.10 archive available from ctan. You also
27 will need perl 5, one possibility is Activeperl (currently free) from
28 <URL:http://www.activestate.com>; you need to locate the download and
29 install instructions for the current version available (since the
30 packages and installation instructions change from time to time).
31
32 If you don't want/can't to compile wget with openssl comment the SSL 
33 related lines in windows\Makefile.src; then follow the normal 
34 instructions (configure.bat and so on).
35
36 Windows contributors:
37
38 * Darko Budor <dbudor@zesoi.fer.hr> -- the initial work on the Windows
39   port;
40
41 * Tim Charron <tcharron@interlog.com> -- additional cleanup and
42   contribution of the Watcom makefile;
43
44 * John Burden <john@futuresguide.com> -- cleanup of the VC++ makefile
45   to get a clean build with VC++ 5.0 on Windows 95;
46
47 * Douglas E. Wegscheid -- maintains configure.bat and various Windows
48   makefiles.