From: <jgr...@us...> - 2003-05-06 17:42:26
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1:/tmp/cvs-serv30205 Modified Files: installer.nsi Log Message: Installer now includes the MSWin32 platform module, the POPFileIcon DLL and Win32::API Index: installer.nsi =================================================================== RCS file: /cvsroot/popfile/windows/installer.nsi,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** installer.nsi 5 May 2003 20:40:10 -0000 1.40 --- installer.nsi 6 May 2003 17:42:22 -0000 1.41 *************** *** 247,250 **** --- 247,253 ---- File "..\engine\Proxy\Proxy.pm" File "..\engine\Proxy\POP3.pm" + SetOutPath $INSTDIR\Platform + File "..\engine\Platform\MSWin32.pm" + File "..\engine\Platform\POPFileIcon.dll" SetOutPath $INSTDIR\UI File "..\engine\UI\HTML.pm" *************** *** 292,295 **** --- 295,307 ---- File "C:\Perl58\lib\MIME\*" + SetOutPath $INSTDIR\Win32 + File "C:\Perl58\site\lib\Win32\API.pm" + + SetOutPath $INSTDIR\Win32\API + File "C:\Perl58\site\lib\Win32\API\*.pm" + + SetOutPath $INSTDIR\auto\Win32\API + File "C:\Perl58\site\lib\auto\Win32\API\*" + SetOutPath $INSTDIR\IO File "C:\Perl58\lib\IO\*" *************** *** 1051,1054 **** --- 1063,1069 ---- Delete $INSTDIR\popfile.reg + Delete $INSTDIR\Platform\*.pm + Delete $INSTDIR\Platform\*.dll + RMDir $INSTDIR\Platform Delete $INSTDIR\Proxy\*.pm RMDir $INSTDIR\Proxy *************** *** 1076,1080 **** --- 1091,1102 ---- RMDir /r $INSTDIR\corpus Delete $INSTDIR\stopwords + RMDir /r $INSTDIR\messages + Delete $INSTDIR\Win32\API\* + RmDir /r $INSTDIR\Win32\API + Delete $INSTDIR\Win32\* + RmDir /r $INSTDIR\Win32 + Delete $INSTDIR\auto\Win32\API\* + RmDir /r $INSTDIR\auto\Win32\API Delete $INSTDIR\MIME\*.* RMDir $INSTDIR\MIME |