Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30078
Modified Files:
Tag: b0_22_2
installer-SecMinPerl-body.nsh installer-SecPOPFile-body.nsh
Log Message:
Enhance the minimal Perl to cope with the new dependencies found
in an updated ActivePerl 5.8.8 Build 820 installation.
Index: installer-SecPOPFile-body.nsh
===================================================================
RCS file: /cvsroot/popfile/windows/installer-SecPOPFile-body.nsh,v
retrieving revision 1.3.2.7
retrieving revision 1.3.2.8
diff -C2 -d -r1.3.2.7 -r1.3.2.8
*** installer-SecPOPFile-body.nsh 31 Jan 2007 13:23:48 -0000 1.3.2.7
--- installer-SecPOPFile-body.nsh 10 Feb 2007 12:21:40 -0000 1.3.2.8
***************
*** 197,201 ****
; for the non-service EXE files plus renamed versions of the old 0.22.2 EXE files. These
; old ActivePerl 5.8.4 files can now be deleted as this installer contains versions based
! ; upon ActivePerl 5.8.7.
Delete "$G_ROOTDIR\popfile-584.exe"
--- 197,201 ----
; for the non-service EXE files plus renamed versions of the old 0.22.2 EXE files. These
; old ActivePerl 5.8.4 files can now be deleted as this installer contains versions based
! ; upon a more recent version of ActivePerl (e.g. 0.22.5 is based upon 5.8.8 Build 820).
Delete "$G_ROOTDIR\popfile-584.exe"
Index: installer-SecMinPerl-body.nsh
===================================================================
RCS file: /cvsroot/popfile/windows/installer-SecMinPerl-body.nsh,v
retrieving revision 1.2.2.7
retrieving revision 1.2.2.8
diff -C2 -d -r1.2.2.7 -r1.2.2.8
*** installer-SecMinPerl-body.nsh 28 Jan 2007 21:22:04 -0000 1.2.2.7
--- installer-SecMinPerl-body.nsh 10 Feb 2007 12:21:40 -0000 1.2.2.8
***************
*** 49,53 ****
SetDetailsPrint listonly
! ; Install the minimal Perl "core" based upon ActivePerl 5.8.8 Build 819
; (extra Perl files are added by the "Kakasi", "SOCKS" & "XMLRPC" sections in installer.nsi)
--- 49,53 ----
SetDetailsPrint listonly
! ; Install the minimal Perl "core" based upon ActivePerl 5.8.8 Build 820
; (extra Perl files are added by the "Kakasi", "SOCKS" & "XMLRPC" sections in installer.nsi)
***************
*** 79,82 ****
--- 79,83 ----
File "${C_PERL_DIR}\lib\vars.pm"
File "${C_PERL_DIR}\lib\warnings.pm"
+ File "${C_PERL_DIR}\lib\Win32.pm"
File "${C_PERL_DIR}\lib\XSLoader.pm"
***************
*** 119,122 ****
--- 120,126 ----
File "${C_PERL_DIR}\lib\MIME\*"
+ SetOutPath "$G_MPLIBDIR\Scalar"
+ File "${C_PERL_DIR}\lib\Scalar\Util.pm"
+
SetOutPath "$G_MPLIBDIR\Sys"
File "${C_PERL_DIR}\lib\Sys\*"
***************
*** 126,130 ****
SetOutPath "$G_MPLIBDIR\Time"
! File "${C_PERL_DIR}\lib\Time\Local.pm"
File "${C_PERL_DIR}\site\lib\Time\Zone.pm"
--- 130,134 ----
SetOutPath "$G_MPLIBDIR\Time"
! File "${C_PERL_DIR}\site\lib\Time\Local.pm"
File "${C_PERL_DIR}\site\lib\Time\Zone.pm"
***************
*** 161,164 ****
--- 165,171 ----
File "${C_PERL_DIR}\lib\auto\Sys\Hostname\*"
+ SetOutPath "$G_MPLIBDIR\auto\Win32"
+ File "${C_PERL_DIR}\lib\auto\Win32\*"
+
; Install Perl modules and library files for BerkeleyDB support. Although POPFile now uses
; SQLite (or another SQL database) to store the corpus and other essential data, it retains
***************
*** 192,196 ****
File "${C_PERL_DIR}\lib\auto\DBI\DBI.lib"
! ; Install SQLite2 support. The 0.22.5 release is based upon ActivePerl 5.8.8 Build 819
; which includes the 3.x flavour of the DBD::SQLite module so we now default to using
; DBD::SQLite2 since POPFile 0.22.x is not compatible with SQLite 3.x. The 0.23.0 release
--- 199,203 ----
File "${C_PERL_DIR}\lib\auto\DBI\DBI.lib"
! ; Install SQLite2 support. The 0.22.5 release is based upon ActivePerl 5.8.8 Build 820
; which includes the 3.x flavour of the DBD::SQLite module so we now default to using
; DBD::SQLite2 since POPFile 0.22.x is not compatible with SQLite 3.x. The 0.23.0 release
|