From: Brian S. <xue...@us...> - 2008-02-14 17:42:39
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15647 Modified Files: Tag: b0_22_2 getssl.nsh pfi-library.nsh Log Message: Update the "POPFile SSL Setup" wizard to work with the project's new server structure and the current SSL Support files from the University of Winnipeg repository. Index: pfi-library.nsh =================================================================== RCS file: /cvsroot/popfile/windows/pfi-library.nsh,v retrieving revision 1.53.4.15 retrieving revision 1.53.4.16 diff -C2 -d -r1.53.4.15 -r1.53.4.16 *** pfi-library.nsh 4 Dec 2007 20:54:45 -0000 1.53.4.15 --- pfi-library.nsh 14 Feb 2008 17:42:42 -0000 1.53.4.16 *************** *** 5,9 **** # to create (and test) the POPFile Windows installer. # ! # Copyright (c) 2003-2007 John Graham-Cumming # # This file is part of POPFile --- 5,9 ---- # to create (and test) the POPFile Windows installer. # ! # Copyright (c) 2003-2008 John Graham-Cumming # # This file is part of POPFile *************** *** 60,64 **** #-------------------------------------------------------------------------- ! !define C_PFI_LIBRARY_VERSION "0.3.12" #-------------------------------------------------------------------------- --- 60,64 ---- #-------------------------------------------------------------------------- ! !define C_PFI_LIBRARY_VERSION "0.3.13" #-------------------------------------------------------------------------- *************** *** 1703,1707 **** !macroend ! !ifdef ADDUSER | BACKUP | DBSTATUS | INSTALLER | MONITORCC | ONDEMAND | RESTORE #-------------------------------------------------------------------------- # Installer Function: PFI_GetCompleteFPN --- 1703,1707 ---- !macroend ! !ifdef ADDSSL | ADDUSER | BACKUP | DBSTATUS | INSTALLER | MONITORCC | ONDEMAND | RESTORE #-------------------------------------------------------------------------- # Installer Function: PFI_GetCompleteFPN Index: getssl.nsh =================================================================== RCS file: /cvsroot/popfile/windows/getssl.nsh,v retrieving revision 1.6.2.21 retrieving revision 1.6.2.22 diff -C2 -d -r1.6.2.21 -r1.6.2.22 *** getssl.nsh 9 Feb 2008 15:32:41 -0000 1.6.2.21 --- getssl.nsh 14 Feb 2008 17:42:42 -0000 1.6.2.22 *************** *** 119,129 **** ;------------------------------------------------ ! ; The patch used to downgrade SSL.pm v0.99, SSL.pm v0.999 or SSL.pm v1.01 to v0.97 was ! ; created using the VPATCH package which is supplied with NSIS. The following commands ! ; were used to create the patch file: ; ; GenPat.exe SSL_0.99.pm SSL_0.97.pm SSL_pm.pat ; GenPat.exe SSL_0.999.pm SSL_0.97.pm SSL_pm.pat ; GenPat.exe SSL_1.01.pm SSL_0.97.pm SSL_pm.pat ; ; where SSL_0.97.pm was the SSL.pm file from v0.97 of the IO::Socket:SSL module --- 119,130 ---- ;------------------------------------------------ ! ; The patch used to downgrade SSL.pm v0.99, SSL.pm v0.999, SSL.pm v1.01 or SSL.pm v1.08 ! ; to SSL.pm v0.97 was created using the VPATCH package which is supplied with NSIS. The ! ; following commands were used to create the patch file: ; ; GenPat.exe SSL_0.99.pm SSL_0.97.pm SSL_pm.pat ; GenPat.exe SSL_0.999.pm SSL_0.97.pm SSL_pm.pat ; GenPat.exe SSL_1.01.pm SSL_0.97.pm SSL_pm.pat + ; GenPat.exe SSL_1.08.pm SSL_0.97.pm SSL_pm.pat ; ; where SSL_0.97.pm was the SSL.pm file from v0.97 of the IO::Socket:SSL module *************** *** 131,136 **** ; and SSL_0.999.pm was the SSL.pm file from v0.999 of the IO::Socket:SSL module ; and SSL_1.01.pm was the SSL.pm file from v1.01 of the IO::Socket:SSL module ; ! ; The resulting SSL_pm.pat file can be used to downgrade v0.99 or v0.999 or v1.01 of SSL.pm. #-------------------------------------------------------------------------- --- 132,142 ---- ; and SSL_0.999.pm was the SSL.pm file from v0.999 of the IO::Socket:SSL module ; and SSL_1.01.pm was the SSL.pm file from v1.01 of the IO::Socket:SSL module + ; and SSL_1.08.pm was the SSL.pm file from v1.08 of the IO::Socket:SSL module ; ! ; The resulting SSL_pm.pat file can be used to downgrade v0.99, v0.999, v1.01 or v1.08 of SSL.pm. ! ; ! ; NOTE: When preparing the patch make sure that these Perl files use LF and not CRLF ! ; for the end-of-line sequence otherwise the resulting SSL_pm.pat file will not work ! ; (a "no suitable patches found" error will be displayed) #-------------------------------------------------------------------------- |