mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[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:
parent
a83387134c
commit
5974393771
@ -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>
|
2006-12-29 Gisle Vanem <giva@bgnett.no>
|
||||||
|
|
||||||
* config.h: Added 'HAVE_SYS_UTIME_H 1' which gets undefined as needed
|
* config.h: Added 'HAVE_SYS_UTIME_H 1' which gets undefined as needed
|
||||||
|
@ -72,6 +72,8 @@ bindist: wget.zip
|
|||||||
|
|
||||||
wget.zip: $(SUBDIRS)
|
wget.zip: $(SUBDIRS)
|
||||||
$(RM) wget.zip
|
$(RM) wget.zip
|
||||||
|
$(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 -Djl9 wget.zip AUTHORS COPYING INSTALL MAILING-LIST NEWS README doc/sample.wgetrc
|
||||||
zip -Dj9 wget.zip src/wget.exe doc/wget.hlp
|
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
|
||||||
|
@ -70,6 +70,9 @@ bindist: wget.zip
|
|||||||
|
|
||||||
wget.zip: $(SUBDIRS)
|
wget.zip: $(SUBDIRS)
|
||||||
$(RM) wget.zip
|
$(RM) wget.zip
|
||||||
|
$(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 -Djl9 wget.zip AUTHORS COPYING INSTALL MAILING-LIST NEWS README doc/sample.wgetrc
|
||||||
zip -Dj9 wget.zip src/wget.exe doc/wget.hlp
|
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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user