]> sjero.net Git - wget/commitdiff
[svn] Add support for adding required files to the wget.zip file when running
authorhniksic <devnull@localhost>
Sun, 11 Feb 2007 12:28:24 +0000 (04:28 -0800)
committerhniksic <devnull@localhost>
Sun, 11 Feb 2007 12:28:24 +0000 (04:28 -0800)
NMAKE wget.zip or NMAKE bindist.  By Christopher G. Lewis.

windows/ChangeLog
windows/Makefile.top
windows/Makefile.top.bor

index 659a2075b985943fef4dd99dfe8b9dc70c27197f..d59ab5ac973f76f96013466c06b9da9758615d95 100644 (file)
@@ -1,3 +1,19 @@
+2006-06-25  Christopher Lewis <chris@christopherlewis.com>
+
+       * Windows\Makefile.top: Added OpenSSL dlls and cacert.pem to
+       wget.zip to further automate the Win32 build process
+
+       * Windows\Makefile.top.bor: Added OpenSSL dlls and cacert.pem to
+       wget.zip to further automate the Win32 build process
+
+2007-01-23  Christopher Lewis <chris@christopherlewis.com>
+
+       * Windows\Makefile.top: Added the required file msvcr80.dll.  This
+       file is required by OpenSSL.
+
+       * Windows\Makefile.top.bor: Added the required file msvcr80.dll.
+       This file is required by OpenSSL.
+
 2006-12-29  Gisle Vanem  <giva@bgnett.no>
 
        * config.h: Added 'HAVE_SYS_UTIME_H 1' which gets undefined as needed
index a9025abcf036dfb2a3336cf4d97c6682793ebb59..0ebe5bf3d232f865615cd04ed1508c5735b8d910 100644 (file)
@@ -72,6 +72,8 @@ bindist: wget.zip
 
 wget.zip: $(SUBDIRS)
        $(RM) wget.zip
-       zip -Djl9 wget.zip AUTHORS COPYING INSTALL MAILING-LIST NEWS README doc/sample.wgetrc
-       zip -Dj9 wget.zip src/wget.exe doc/wget.hlp
-
+       $(RM) cacert.pem
+       src\wget http://curl.haxx.se/ca/cacert.pem
+       zip -Djl9 wget.zip AUTHORS COPYING INSTALL MAILING-LIST NEWS README doc/sample.wgetrc 
+       zip -Dj9 wget.zip src/wget.exe doc/wget.hlp cacert.pem 
+       zip -Dj9 wget.zip c:\openssl\bin\libeay32.dll c:\openssl\bin\ssleay32.dll c:\openssl\bin\msvcr80.dll
index b36111620f8abf3a559afc5a7c513a3aeb565cb8..f6646c5132624ec4da3bab65f436b555c49de5e3 100644 (file)
@@ -70,6 +70,9 @@ bindist: wget.zip
 
 wget.zip: $(SUBDIRS)
        $(RM) wget.zip
-       zip -Djl9 wget.zip AUTHORS COPYING INSTALL MAILING-LIST NEWS README doc/sample.wgetrc
-       zip -Dj9 wget.zip src/wget.exe doc/wget.hlp
+       $(RM) cacert.pem
+       src\wget http://curl.haxx.se/ca/cacert.pem
+       zip -Djl9 wget.zip AUTHORS COPYING INSTALL MAILING-LIST NEWS README doc/sample.wgetrc 
+       zip -Dj9 wget.zip src/wget.exe doc/wget.hlp cacert.pem 
+       zip -Dj9 wget.zip c:\openssl\bin\libeay32.dll c:\openssl\bin\ssleay32.dll c:\openssl\bin\msvcr80.dll