From: Dirk B. <db...@us...> - 2005-09-17 07:01:33
|
Update of /cvsroot/win32forth/win32forth/apps/Setup In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27861/apps/Setup Modified Files: Setup.f Log Message: Removed copying the w32fHtmlDisplay.dll from the Setup (thank's Jos) Index: Setup.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/Setup/Setup.f,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Setup.f 12 Jun 2005 08:37:35 -0000 1.6 --- Setup.f 17 Sep 2005 07:01:24 -0000 1.7 *************** *** 27,31 **** FLOAD ..\..\src\pointer.f FLOAD ..\..\src\registry.f \ Win32 Registry support ! FLOAD ..\..\src\ansfile.f FLOAD ..\..\src\shell.f FLOAD ..\..\src\callback.f --- 27,31 ---- FLOAD ..\..\src\pointer.f FLOAD ..\..\src\registry.f \ Win32 Registry support ! FLOAD ..\..\src\ansfile.f FLOAD ..\..\src\shell.f FLOAD ..\..\src\callback.f *************** *** 35,39 **** : ?win-error ( f -- ) drop ; : seconds ( n -- ) drop ; ! FLOAD sub_dirs.f FLOAD array.f \ array words FLOAD hyper.f \ build hyper link index --- 35,39 ---- : ?win-error ( f -- ) drop ; : seconds ( n -- ) drop ; ! FLOAD sub_dirs.f FLOAD array.f \ array words FLOAD hyper.f \ build hyper link index *************** *** 61,65 **** &forthdir count drop $current-dir! drop ! cmdline -if ." invoked with commandline <" type ." >" cr then --- 61,65 ---- &forthdir count drop $current-dir! drop ! cmdline -if ." invoked with commandline <" type ." >" cr then *************** *** 68,72 **** GetSystemDirectory ; ! 0 callback &noop noop \ a noop-callback : setup-bye ( -- ) --- 68,72 ---- GetSystemDirectory ; ! 0 callback &noop noop \ a noop-callback : setup-bye ( -- ) *************** *** 127,131 **** ." A Rebuild sample applications (Player4, Solipon2 and PlayVirginRadio)" cr cr ." D Copy Win32Forth dll files (w32fConsole.dll, w32fScintilla.dll," cr ! ." w32fHtmlDisplay.dll, wincon.dll and Zip32.dll) into the Windows system folder:" cr ." '" SystemDirectory$ count type ." ' (this is not done by default)." cr cr ." X Exit setup." cr cr --- 127,131 ---- ." A Rebuild sample applications (Player4, Solipon2 and PlayVirginRadio)" cr cr ." D Copy Win32Forth dll files (w32fConsole.dll, w32fScintilla.dll," cr ! ." wincon.dll and Zip32.dll) into the Windows system folder:" cr ." '" SystemDirectory$ count type ." ' (this is not done by default)." cr cr ." X Exit setup." cr cr *************** *** 193,197 **** _conHndl call SetForegroundWindow drop ." process finished" cr ! key? drop then --- 193,197 ---- _conHndl call SetForegroundWindow drop ." process finished" cr ! key? drop then *************** *** 199,203 **** : cleanbuild ( f -- ) \ clean up the files before install ! cls cr c" WIN32FOR.EXE" filedelete c" WIN32FOR.DBG" filedelete --- 199,203 ---- : cleanbuild ( f -- ) \ clean up the files before install ! cls cr c" WIN32FOR.EXE" filedelete c" WIN32FOR.DBG" filedelete *************** *** 295,299 **** c" w32fConsole.dll" copydll c" w32fScintilla.dll" copydll - c" w32fHtmlDisplay.dll" copydll c" wincon.dll" copydll c" Zip32.dll" copydll --- 295,298 ---- *************** *** 308,312 **** buildwined \ build WinEd if buildindex \ build the index files for WinEd ! then buildforthform \ build ForthForm buildproject \ build ProjectManager --- 307,311 ---- buildwined \ build WinEd if buildindex \ build the index files for WinEd ! then buildforthform \ build ForthForm buildproject \ build ProjectManager *************** *** 486,490 **** ." Rebuilding Sample applications" cr checkcont ! buildsamples endedok ; --- 485,489 ---- ." Rebuilding Sample applications" cr checkcont ! buildsamples endedok ; *************** *** 555,557 **** wait&bye - |