From: Brian S. <xue...@us...> - 2007-05-12 17:12:31
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23210 Modified Files: Tag: b0_22_2 installer-SecMinPerl-body.nsh Log Message: Add missing Perl component to the minimal Perl. Index: installer-SecMinPerl-body.nsh =================================================================== RCS file: /cvsroot/popfile/windows/installer-SecMinPerl-body.nsh,v retrieving revision 1.2.2.8 retrieving revision 1.2.2.9 diff -C2 -d -r1.2.2.8 -r1.2.2.9 *** installer-SecMinPerl-body.nsh 10 Feb 2007 12:21:40 -0000 1.2.2.8 --- installer-SecMinPerl-body.nsh 12 May 2007 17:12:30 -0000 1.2.2.9 *************** *** 117,120 **** --- 117,123 ---- File "${C_PERL_DIR}\lib\IO\Socket\*" + SetOutPath "$G_MPLIBDIR\List" + File "${C_PERL_DIR}\lib\List\Util.pm" + SetOutPath "$G_MPLIBDIR\MIME" File "${C_PERL_DIR}\lib\MIME\*" *************** *** 151,154 **** --- 154,160 ---- File "${C_PERL_DIR}\lib\auto\IO\*" + SetOutPath "$G_MPLIBDIR\auto\List\Util" + File "${C_PERL_DIR}\lib\auto\List\Util\*" + SetOutPath "$G_MPLIBDIR\auto\MIME\Base64" File "${C_PERL_DIR}\lib\auto\MIME\Base64\*" *************** *** 202,206 **** ; 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 ! ; of POPFile ia expected to use SQLite 3.x. ; If DBD::SQLite is currently installed, disable it (because we are installing --- 208,212 ---- ; 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 ! ; of POPFile is expected to use SQLite 3.x. ; If DBD::SQLite is currently installed, disable it (because we are installing |