[svn] Add support for adding required files to the wget.zip file when running

NMAKE wget.zip or NMAKE bindist.  By Christopher G. Lewis.
This commit is contained in:
hniksic 2007-02-11 04:28:24 -08:00
parent a83387134c
commit 5974393771
3 changed files with 26 additions and 5 deletions

View 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

View 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

View 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