diff -urb wget/src/gen_sslfunc.c wget.wip/src/gen_sslfunc.c
--- wget/src/gen_sslfunc.c	Sun Dec 17 18:12:02 2000
+++ wget.wip/src/gen_sslfunc.c	Wed Jan 24 16:24:06 2001
@@ -22,7 +22,15 @@
 #ifdef HAVE_SSL
 
 #include <assert.h>
+#if TIME_WITH_SYS_TIME
 #include <sys/time.h>
+#else
+# if HAVE_SYS_TIME_H
+#  include <sys/time.h>
+# else
+#  include <time.h>
+# endif
+#endif
 #include <errno.h>
 
 #include <openssl/bio.h>
diff -urb wget/windows/Makefile.src wget.wip/windows/Makefile.src
--- wget/windows/Makefile.src	Wed Jan 24 14:33:13 2001
+++ wget.wip/windows/Makefile.src	Wed Jan 24 16:24:06 2001
@@ -18,6 +18,10 @@
 #
 # Version: 1.4.4
 #
+#SSLDEFs	=	/DHAVE_SSL
+#SSLLIBS	=
+#SSLSRC	=	gen_sslfunc.c
+#SSLOBJ	=	gen_sslfunc$o
 
 SHELL = command
 
@@ -38,7 +42,7 @@
 
 INCLUDES = /I.
 
-COMPILE = $(CC) $(INCLUDES) $(CPPFLAGS) $(DEBUGCF) $(DEFS) $(CFLAGS)
+COMPILE = $(CC) $(INCLUDES) $(CPPFLAGS) $(DEBUGCF) $(DEFS) $(SSLDEFS) $(CFLAGS)
 LINK    = $(LD) $(LDFLAGS) $(DEBUGLF) /out:$@
 
 #INSTALL = @INSTALL@
@@ -47,11 +51,13 @@
 RM      = del
 
 SRC = cmpt.c connect.c host.c http.c netrc.c ftp-basic.c ftp.c ftp-ls.c \
-      ftp-opie.c ftpparse.c getopt.c hash.c headers.c html-parse.c html-url.c retr.c recur.c url.c init.c utils.c main.c \
+      ftp-opie.c ftpparse.c $(SSLSRC) getopt.c hash.c headers.c html-parse.c \
+      html-url.c retr.c recur.c url.c init.c utils.c main.c \
       version.c mswindows.c fnmatch.c md5.c rbuf.c log.c
 
 OBJ = cmpt$o connect$o host$o http$o netrc$o ftp-basic$o ftp$o ftp-ls$o \
-      ftp-opie$o ftpparse$o getopt$o hash$o headers$o html-parse$o html-url$o retr$o recur$o url$o init$o utils$o main$o \
+      ftp-opie$o ftpparse$o $(SSLOBJ) getopt$o hash$o headers$o html-parse$o \
+      html-url$o retr$o recur$o url$o init$o utils$o main$o \
       version$o mswindows$o fnmatch$o md5$o rbuf$o log$o
 
 .SUFFIXES: .c .obj
@@ -64,7 +70,7 @@
 wget: wget.exe
 
 wget.exe: $(OBJ)
-         $(LD) @<< $(LDFLAGS) $(DEBUGLF) /out:$@ $(LIBS) $(OBJ)
+         $(LD) @<< $(LDFLAGS) $(DEBUGLF) /out:$@ $(LIBS) $(SSLLIBS) $(OBJ)
 <<
         ren wget.exe WGET.EXE
 
diff -urb wget/windows/README wget.wip/windows/README
--- wget/windows/README	Wed Dec 13 16:58:59 2000
+++ wget.wip/windows/README	Wed Jan 24 16:32:41 2001
@@ -6,6 +6,16 @@
 available at <URL:ftp://sunsite.dk/projects/wget/makeinfo.zip>.  This
 copy of makeinfo is from the miktxt 1.10 archive available from ctan.
 
+To configure Wget with VC++ 5.0 with ssl support first get openssl,
+compile it and install relevant headers and libraries where your
+compiler can find them (for example your
+"Program Files\Devstudio\Vc\{bin,include,lib}" directories or wherever
+VC++ is installed; then uncomment the SSL related lines in
+windows\Makefile.src; then follow the normal instructions
+(configure.bat and so on).
+Usually at runtime some openssl libraries (currently ssleay32.dll and
+libeay32.dll) will need to be available in your environment PATH.
+
 Windows contributors:
 
 * Darko Budor <dbudor@zesoi.fer.hr> -- the initial work on the Windows
