From: Brian S. <xue...@us...> - 2005-02-16 01:05:10
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14397 Modified Files: adduser.nsi Log Message: Select 'verbose' mode when starting POPFile (to avoid empty DOS boxes appearing or nothing appearing to happen when pfi-run.bat uses popfile.pl) Index: adduser.nsi =================================================================== RCS file: /cvsroot/popfile/windows/adduser.nsi,v retrieving revision 1.70 retrieving revision 1.71 diff -C2 -d -r1.70 -r1.71 *** adduser.nsi 11 Feb 2005 16:02:02 -0000 1.70 --- adduser.nsi 16 Feb 2005 01:04:58 -0000 1.71 *************** *** 181,185 **** Name "POPFile User" ! !define C_PFI_VERSION "0.2.66" ; Mention the wizard's version number in the titles of the installer & uninstaller windows --- 181,185 ---- Name "POPFile User" ! !define C_PFI_VERSION "0.2.67" ; Mention the wizard's version number in the titles of the installer & uninstaller windows *************** *** 1751,1755 **** FileWrite ${L_FILEHANDLE} "REM Debug command: Start POPFile in foreground using 'popfile.pl'${MB_NL}" FileWrite ${L_FILEHANDLE} "${MB_NL}" ! FileWrite ${L_FILEHANDLE} "$\"%POPFILE_ROOT%\perl.exe$\" $\"%POPFILE_ROOT%\popfile.pl$\"${MB_NL}" FileWrite ${L_FILEHANDLE} "goto exit${MB_NL}" FileWrite ${L_FILEHANDLE} "${MB_NL}" --- 1751,1755 ---- FileWrite ${L_FILEHANDLE} "REM Debug command: Start POPFile in foreground using 'popfile.pl'${MB_NL}" FileWrite ${L_FILEHANDLE} "${MB_NL}" ! FileWrite ${L_FILEHANDLE} "$\"%POPFILE_ROOT%\perl.exe$\" $\"%POPFILE_ROOT%\popfile.pl$\" --verbose=1${MB_NL}" FileWrite ${L_FILEHANDLE} "goto exit${MB_NL}" FileWrite ${L_FILEHANDLE} "${MB_NL}" *************** *** 5287,5291 **** SetOutPath $G_ROOTDIR ClearErrors ! Exec '"$G_ROOTDIR\popfile.exe"' IfErrors 0 startup_ok StrCmp ${L_CONSOLE} "f" error_msg --- 5287,5291 ---- SetOutPath $G_ROOTDIR ClearErrors ! Exec '"$G_ROOTDIR\popfile.exe" --verbose=1' IfErrors 0 startup_ok StrCmp ${L_CONSOLE} "f" error_msg |