From: Brian S. <xue...@us...> - 2007-01-28 21:14:39
|
Update of /cvsroot/popfile/windows/add-ons In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26604 Modified Files: Tag: b0_22_2 addssl.nsi Log Message: Updated to download the latest SSL patch data from the POPFile website. Built-in patches are used to cover times when the website isn't available. (Most of the changes are actually in the "..\getssl.nsh" INCLUDE file) Index: addssl.nsi =================================================================== RCS file: /cvsroot/popfile/windows/add-ons/addssl.nsi,v retrieving revision 1.3.4.7 retrieving revision 1.3.4.8 diff -C2 -d -r1.3.4.7 -r1.3.4.8 *** addssl.nsi 2 Jan 2007 14:05:44 -0000 1.3.4.7 --- addssl.nsi 28 Jan 2007 21:14:36 -0000 1.3.4.8 *************** *** 74,77 **** --- 74,94 ---- ;------------------------------------------------ + ; This script requires the 'DumpLog' NSIS plugin + ;------------------------------------------------ + + ; This script uses a special NSIS plugin (DumpLog) to save the installation log to a file. + ; This plugin is much faster than the 'Dump Content of Log Window to File' function shown + ; in the NSIS Users Manual (see section D.4 in Appendix D of the manual for NSIS 2.22). + ; + ; The 'NSIS Wiki' page for the 'DumpLog' plugin (description, example and download links): + ; http://nsis.sourceforge.net/DumpLog_plug-in + ; + ; To compile this script, copy the 'DumpLog.dll' file to the standard NSIS plugins folder + ; (${NSISDIR}\Plugins\). The 'DumpLog' source and example files can be unzipped to the + ; appropriate ${NSISDIR} sub-folders if you wish, but this step is entirely optional. + ; + ; Tested with version 1.0 of the DumpLog.dll plugin. + + ;------------------------------------------------ ; This script requires the 'Inetc' NSIS plugin ;------------------------------------------------ *************** *** 87,91 **** ; appropriate ${NSISDIR} sub-folders if you wish, but this step is entirely optional. ; ! ; Tested with the inetc.dll plugin timestamped 1 January 2007 19:03:52 ;------------------------------------------------ --- 104,126 ---- ; appropriate ${NSISDIR} sub-folders if you wish, but this step is entirely optional. ; ! ; Tested with the inetc.dll plugin timestamped 18 January 2007 15:52:34 ! ! ;------------------------------------------------ ! ; This script requires the 'md5dll' NSIS plugin ! ;------------------------------------------------ ! ! ; This script uses a special NSIS plugin (md5dll) to calculate the MD5 sum for a file. ! ; ! ; The 'NSIS Wiki' page for the 'md5dll' plugin (description, example and download links): ! ; http://nsis.sourceforge.net/MD5_plugin ! ; ! ; Alternative download links can be found at the 'md5dll' author's site: ! ; http://www.darklogic.org/win32/nsis/plugins/md5dll/ ! ; ! ; To compile this script, copy the 'md5dll.dll' file to the standard NSIS plugins folder ! ; (${NSISDIR}\Plugins\). The 'md5dll' source and example files can be unzipped to the ! ; appropriate ${NSISDIR} sub-folders if you wish, but this step is entirely optional. ! ; ! ; Tested with version 0.4 of the 'md5dll' plugin. ;------------------------------------------------ *************** *** 103,107 **** ; To compile this script, copy the 'untgz.dll' file to the standard NSIS plugins folder ; (${NSISDIR}\Plugins\). The 'untgz' source and example files can be unzipped to the ! ; ${NSISDIR}\Contrib\untgz\ folder if you wish, but this step is entirely optional. ; ; Tested with versions 1.0.5, 1.0.6, 1.0.7 and 1.0.8 of the 'untgz' plugin. --- 138,142 ---- ; To compile this script, copy the 'untgz.dll' file to the standard NSIS plugins folder ; (${NSISDIR}\Plugins\). The 'untgz' source and example files can be unzipped to the ! ; appropriate ${NSISDIR} sub-folders if you wish, but this step is entirely optional. ; ; Tested with versions 1.0.5, 1.0.6, 1.0.7 and 1.0.8 of the 'untgz' plugin. *************** *** 230,234 **** Name "POPFile SSL Setup" ! !define C_PFI_VERSION "0.2.5" ; Mention the wizard's version number in the window title --- 265,269 ---- Name "POPFile SSL Setup" ! !define C_PFI_VERSION "0.2.7" ; Mention the wizard's version number in the window title *************** *** 240,249 **** !define C_OUTFILE "addssl.exe" - ; Values used for the $G_SSL_SOURCE flag which indicates where we get the SSL files from - ; (to make maintenance easier, constants are used for these values) - - !define C_BUILTIN "built-in" ; use old SSL files compatible with pre-0.22.3 releases - !define C_INTERNET "internet" ; download latest SSL Support files from the Internet - #-------------------------------------------------------------------------- # User Registers (Global) --- 275,278 ---- *************** *** 255,261 **** Var G_MPLIBDIR ; full path to the folder used for most of the minimal Perl files - Var G_SSL_SOURCE ; indicates the source of the SSL files we are to install - ; (the possible values are either ${C_BUILTIN} or ${C_INTERNET}) - Var G_PLS_FIELD_1 ; used to customize some language strings --- 284,287 ---- *************** *** 538,541 **** --- 564,568 ---- ReserveFile "${NSISDIR}\Plugins\DumpLog.dll" ReserveFile "${NSISDIR}\Plugins\inetc.dll" + ReserveFile "${NSISDIR}\Plugins\md5dll.dll" ReserveFile "${NSISDIR}\Plugins\NSISdl.dll" ReserveFile "${NSISDIR}\Plugins\System.dll" *************** *** 634,637 **** --- 661,665 ---- ; Now patch Module.pm (if it needs to be patched) + DetailPrint "" DetailPrint "$(PSS_LANG_PREPAREPATCH)" |