Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18393
Modified Files:
Tag: b0_22_2
getssl.nsh
Log Message:
Converted to use macro-based sections and functions for use by the
installer, uninstaller and the POPFile SSL Support wizard when
adding SSL support to an installation.
Index: getssl.nsh
===================================================================
RCS file: /cvsroot/popfile/windows/getssl.nsh,v
retrieving revision 1.6.2.16
retrieving revision 1.6.2.17
diff -C2 -d -r1.6.2.16 -r1.6.2.17
*** getssl.nsh 5 Oct 2007 18:30:39 -0000 1.6.2.16
--- getssl.nsh 14 Oct 2007 17:22:52 -0000 1.6.2.17
***************
*** 9,34 ****
# programs download and install the same SSL files.
#
! # On 18 July 2006 the University of Winnipeg repository was updated to provide
! # IO::Socket::SSL v0.99 which is not compatible with POPFile so a patch will be
! # applied to downgrade the SSL.pm file to the compatible v0.97 version.
! #
! # On 18 August 2006 the University of Winnipeg repository was updated to supply
! # IO::Socket::SSL v0.999 which is not compatible with POPFile so a patch will
! # be applied to downgrade the SSL.pm file to the compatible v0.97 version.
! #
[...2078 lines suppressed...]
+ !macroend
+
+
+ #--------------------------------------------------------------------------
+ # Code block to be used when compiling the POPFile SSL Setup Wizard
+ #--------------------------------------------------------------------------
+
+ !ifdef ADDSSL
+
+ !insertmacro SECTION_SSLSUPPORT ""
+ !insertmacro FUNCTION_GETSSLFILE ""
+ !insertmacro FUNCTION_EXTRACTMD5SUM ""
+ !insertmacro FUNCTION_STRCHECKHEXADECIMAL ""
+ !insertmacro FUNCTION_EOL2CRLF ""
+ !insertmacro FUNCTION_DOWNLOADPATCHES ""
+ !insertmacro FUNCTION_APPLYPATCHES ""
+
+ !endif
#--------------------------------------------------------------------------
|