Board index » cppbuilder » Re: Update Indy10 in C++Builder 2007

Re: Update Indy10 in C++Builder 2007


2007-12-20 02:58:23 AM
cppbuilder49
I figured it out.
It's best to remove all the old indy files.
The chance is to high that different file versions are mixed up.
Also - then none of the existing project files need to be changed.
Roland
"roladdon" < XXXX@XXXXX.COM >wrote in message
Quote
So what do you suggest to remove old Indy?
Yes - delete the old packages.
but then -
1) Should I remove everything with "Indy" in it, in the CodeGear and in
the Win directory - just to be on the save side.
or
2) should I simply add a include path to the new directory putting it
first in the list without deleting anything

Roland

 
 

Re:Re: Update Indy10 in C++Builder 2007

Roland,
It sounds like you've made a lot of progress. Would you be willing to share
what you learned so that we can try to develop a procedure that others can
use and avoid some of the learning curve?
Joe
"roladdon" < XXXX@XXXXX.COM >wrote in message
Quote
I figured it out.
It's best to remove all the old indy files.
The chance is to high that different file versions are mixed up.
Also - then none of the existing project files need to be changed.

Roland

"roladdon" < XXXX@XXXXX.COM >wrote in message
news:4767e8d4$ XXXX@XXXXX.COM ...
>So what do you suggest to remove old Indy?
>Yes - delete the old packages.
>but then -
>1) Should I remove everything with "Indy" in it, in the CodeGear and in
>the Win directory - just to be on the save side.
>or
>2) should I simply add a include path to the new directory putting it
>first in the list without deleting anything
>
>Roland
>


 

Re:Re: Update Indy10 in C++Builder 2007

This is the bat to backup and remove old Indy - this works on my computer -
may need to be adjusted to fit yours
BackupRemoveIndyRadStudio.bat
_________________________________________________________
@echo off
if not (%COMSPEC%)==() goto start
echo No Command Interpreter found
goto EndExit
:start
SET NDCBuilder=C:\Progra~1\CodeGear\RADStu~1\5.0
SET NDCBuilderBackUp=C:\Progra~1\CodeGear\RADStu~1\BackUp5.0
if not exist %NDCBuilderBackUp%\*.* md %NDCBuilderBackUp%>nul
if (%NDCBuilder%)==() goto enderrmsg
if not exist %NDCBuilder% goto enderrmsg
if not exist %NDCBuilderBackUp% goto enderrmsg
if not exist %NDCBuilderBackUp%\Bin\*.* md %NDCBuilderBackUp%\Bin>nul
move %NDCBuilder%\Bin\*Indy*.bpl %NDCBuilderBackUp%\Bin
move %NDCBuilder%\Bin\*Indy*.jdbg %NDCBuilderBackUp%\Bin
if not exist %NDCBuilderBackUp%\include\*.* md %NDCBuilderBackUp%\include
Quote
nul
if not exist %NDCBuilderBackUp%\include\Indy10\*.* md
%NDCBuilderBackUp%\include\Indy10>nul
move %NDCBuilder%\include\Indy10\*.* %NDCBuilderBackUp%\include\Indy10
if not exist %NDCBuilderBackUp%\source\*.* md %NDCBuilderBackUp%\source>nul
if not exist %NDCBuilderBackUp%\source\Indy\*.* md
%NDCBuilderBackUp%\source\Indy>nul
if not exist %NDCBuilderBackUp%\source\Indy\Indy10\*.* md
%NDCBuilderBackUp%\source\Indy\Indy10>nul
if not exist %NDCBuilderBackUp%\source\Indy\Indy10\System\*.* md
%NDCBuilderBackUp%\source\Indy\Indy10\System>nul
move %NDCBuilder%\source\Indy\Indy10\System\*.*
%NDCBuilderBackUp%\source\Indy\Indy10\System
if not exist %NDCBuilderBackUp%\source\Indy\Indy10\Protocols\*.* md
%NDCBuilderBackUp%\source\Indy\Indy10\Protocols>nul
move %NDCBuilder%\source\Indy\Indy10\Protocols\*.*
%NDCBuilderBackUp%\source\Indy\Indy10\Protocols
if not exist %NDCBuilderBackUp%\source\Indy\Indy10\Core\*.* md
%NDCBuilderBackUp%\source\Indy\Indy10\Core>nul
move %NDCBuilder%\source\Indy\Indy10\Core\*.*
%NDCBuilderBackUp%\source\Indy\Indy10\Core
if not exist %NDCBuilderBackUp%\Help\*.* md %NDCBuilderBackUp%\Help>nul
if not exist %NDCBuilderBackUp%\Help\Doc\*.* md %NDCBuilderBackUp%\Help\Doc
Quote
nul
if not exist %NDCBuilderBackUp%\Help\Doc\Indy\*.* md
%NDCBuilderBackUp%\Help\Doc\Indy>nul
move %NDCBuilder%\Help\Doc\Indy\*.* %NDCBuilderBackUp%\Help\Doc\Indy
if not exist %NDCBuilderBackUp%\lib\*.* md %NDCBuilderBackUp%\lib>nul
if not exist %NDCBuilderBackUp%\lib\Indy10\*.* md
%NDCBuilderBackUp%\lib\Indy10>nul
move %NDCBuilder%\lib\Indy10\*.* %NDCBuilderBackUp%\lib\Indy10
if not exist %NDCBuilderBackUp%\lib\release\*.* md
%NDCBuilderBackUp%\lib\release>nul
move %NDCBuilder%\lib\release\*Indy*.bpi %NDCBuilderBackUp%\lib\release
move %NDCBuilder%\lib\release\*Indy*.lib %NDCBuilderBackUp%\lib\release
if not exist %NDCBuilderBackUp%\lib\debug\*.* md
%NDCBuilderBackUp%\lib\debug>nul
move %NDCBuilder%\lib\debug\*Indy*.bpi %NDCBuilderBackUp%\lib\debug
move %NDCBuilder%\lib\debug\*Indy*.lib %NDCBuilderBackUp%\lib\debug
if not exist %NDCBuilderBackUp%\lib\debug\Indy10\*.* md
%NDCBuilderBackUp%\lib\debug\Indy10>nul
move %NDCBuilder%\lib\debug\Indy10\*.* %NDCBuilderBackUp%\lib\debug\Indy10
goto EndExit
:enderrmsg
Echo Error ! ! !
:EndExit
Echo End Batch File
@Pause
_________________________________________________________
 

{smallsort}

Re:Re: Update Indy10 in C++Builder 2007

This is the bat to recreate the exact CBuilder2007 directory structure.
Put it into the same dir where the other Indy bat files are. (Full4.bat,
Full5.Bat, ......)
The Directory created is called "C120" simply copy all items in the dir to
C:\Program Files\CodeGear\RAD Studio\5.0
Again - this works on my computer - may need to be djusted to fit yours -
run at your own risk.
The issue remaining is the difference between debug and release version:
What is it that should be specified in the .dpk file and commandline.
Fullc120.bat
______________________________________________
@echo off
if not (%COMSPEC%)==() goto start
echo No Command Interpreter found
goto EndExit
:start
call clean.bat
SET NDCBuilder=C:\Progra~1\CodeGear\RADStu~1\5.0
SET NDWINSYS=C:\WINDOWS\system32
SET NDIdSource=E:\d\Cbuild~3\Indy10
SET NDIdSystem=%NDIdSource%\C120\source\Indy\Indy10\System
SET NDIdCore=%NDIdSource%\C120\source\Indy\Indy10\Core
SET NDIdProtocols=%NDIdSource%\C120\source\Indy\Indy10\Protocols
Set NDIdDcu=%NDIdSource%\C120\lib\Indy10
Set NDIdDcp=%NDIdSource%\C120\lib\Indy10
Set NDIdHpp=%NDIdSource%\C120\include\Indy10
Set NDIdBpi=%NDIdSource%\C120\lib\release
Set NDIdLib=%NDIdSource%\C120\lib\release
Set NDIdBpl=%NDIdSource%\C120\Bin
Rem Debug directories
Set dNDIdDcu=%NDIdSource%\C120\lib\debug\Indy10
Set dNDIdBpi=%NDIdSource%\C120\lib\debug
Set dNDIdLib=%NDIdSource%\C120\lib\debug
if (%NDCBuilder%)==() goto enderrmsg
if not exist %NDCBuilder% goto enderrmsg
if not exist %NDWINSYS% goto enderrmsg
@Echo Delete manually the C120Bin directory now
@Pause
if not exist %NDIdSource%\C120\Bin\*.* md %NDIdSource%\C120\Bin>nul
if not exist %NDIdSource%\C120\include\*.* md %NDIdSource%\C120\include>nul
if not exist %NDIdSource%\C120\include\Indy10\*.* md
%NDIdSource%\C120\include\Indy10>nul
if not exist %NDIdSource%\C120\source\*.* md %NDIdSource%\C120\source>nul
if not exist %NDIdSource%\C120\source\Indy\*.* md
%NDIdSource%\C120\source\Indy>nul
if not exist %NDIdSource%\C120\source\Indy\Indy10\*.* md
%NDIdSource%\C120\source\Indy\Indy10>nul
if not exist %NDIdSource%\C120\source\Indy\Indy10\System\*.* md
%NDIdSource%\C120\source\Indy\Indy10\System>nul
if not exist %NDIdSource%\C120\source\Indy\Indy10\System\Obj\*.* md
%NDIdSource%\C120\source\Indy\Indy10\System\obj>nul
if not exist %NDIdSource%\C120\source\Indy\Indy10\Protocols\*.* md
%NDIdSource%\C120\source\Indy\Indy10\Protocols>nul
if not exist %NDIdSource%\C120\source\Indy\Indy10\Protocols\Obj\*.* md
%NDIdSource%\C120\source\Indy\Indy10\Protocols\Obj>nul
if not exist %NDIdSource%\C120\source\Indy\Indy10\Core\*.* md
%NDIdSource%\C120\source\Indy\Indy10\Core>nul
if not exist %NDIdSource%\C120\source\Indy\Indy10\Core\Obj\*.* md
%NDIdSource%\C120\source\Indy\Indy10\Core\Obj>nul
if not exist %NDIdSource%\C120\Help\*.* md %NDIdSource%\C120\Help>nul
if not exist %NDIdSource%\C120\Help\Doc\*.* md %NDIdSource%\C120\Help\Doc
Quote
nul
if not exist %NDIdSource%\C120\Help\Doc\Indy\*.* md
%NDIdSource%\C120\Help\Doc\Indy>nul
if not exist %NDIdSource%\C120\lib\*.* md %NDIdSource%\C120\lib>nul
if not exist %NDIdSource%\C120\lib\Indy10\*.* md
%NDIdSource%\C120\lib\Indy10>nul
if not exist %NDIdSource%\C120\lib\release\*.* md
%NDIdSource%\C120\lib\release>nul
if not exist %NDIdSource%\C120\lib\debug\*.* md %NDIdSource%\C120\lib\debug
Quote
nul
if not exist %NDIdSource%\C120\lib\debug\Indy10\*.* md
%NDIdSource%\C120\lib\debug\Indy10>nul
REM * REM * - Debug Build add /V switch: D+ O- W+ M+ R+ Q+ I+ Y+ L+
REM ***************************************************
REM Compile Runtime Package IndySystem120
REM ***************************************************
if exist %NDIdSource%\lib\System\*.pas copy %NDIdSource%\lib\System\*.pas
%NDIdSystem%>nul
if exist %NDIdSource%\lib\System\*.dpk copy %NDIdSource%\lib\System\*.dpk
%NDIdSystem%>nul
if exist %NDIdSource%\lib\System\*.obj copy %NDIdSource%\lib\System\*.obj
%NDIdSystem%>nul
if exist %NDIdSource%\lib\System\*.inc copy %NDIdSource%\lib\System\*.inc
%NDIdSystem%>nul
if exist %NDIdSource%\lib\System\*.res copy %NDIdSource%\lib\System\*.res
%NDIdSystem%>nul
if exist %NDIdSource%\lib\System\*.dcr copy %NDIdSource%\lib\System\*.dcr
%NDIdSystem%>nul
if exist %NDIdSource%\lib\System\*.rsp copy %NDIdSource%\lib\System\*.rsp
%NDIdSystem%>nul
CD %NDIdSystem%
%NDCBuilder%\bin\dcc32.exe IndySystem120.dpk /B /V /O%dNDIdLib% /DBCB /M /H
/W /JPHN /JL /E%dNDIdLib% /LE%NDIdBpl% /LN%NDIdDcp% /N0%dNDIdDcu%
/NH%NDIdHpp% /NO%dNDIdLib% /NB%dNDIdBpi% /-DRC -$d+O-n+p+r+s-t-w+y+m+q+i+l+
%2 %3 %4
REM ***************************************************
REM Compile Runtime Package IndyCore120
REM ***************************************************
if exist %NDIdSource%\lib\Core\*.pas copy %NDIdSource%\lib\Core\*.pas
%NDIdCore%>nul
if exist %NDIdSource%\lib\Core\*.dpk copy %NDIdSource%\lib\Core\*.dpk
%NDIdCore%>nul
if exist %NDIdSource%\lib\Core\*.obj copy %NDIdSource%\lib\Core\*.obj
%NDIdCore%>nul
if exist %NDIdSource%\lib\Core\*.inc copy %NDIdSource%\lib\Core\*.inc
%NDIdCore%>nul
if exist %NDIdSource%\lib\Core\*.res copy %NDIdSource%\lib\Core\*.res
%NDIdCore%>nul
if exist %NDIdSource%\lib\Core\*.dcr copy %NDIdSource%\lib\Core\*.dcr
%NDIdCore%>nul
if exist %NDIdSource%\lib\Core\*.rsp copy %NDIdSource%\lib\Core\*.rsp
%NDIdCore%>nul
CD %NDIdCore%
%NDCBuilder%\bin\dcc32.exe IndyCore120.dpk /B /V /O%dNDIdLib% /DBCB /M /H /W
/JPHN /JL /E%dNDIdLib% /LE%NDIdBpl% /LN%NDIdDcp% /N0%dNDIdDcu% /NH%NDIdHpp%
/NO%dNDIdLib% /NB%dNDIdBpi% /-DRC -$d+O-n+p+r+s-t-w+y+m+q+i+l+ %2 %3 %4
REM ***************************************************
REM Compile Designtime Package dclIndyCore120
REM ***************************************************
%NDCBuilder%\bin\dcc32.exe dclIndyCore120.dpk /B /V /O%dNDIdLib% /DBCB /M /H
/W /JPHN /JL /E%dNDIdLib% /LE%NDIdBpl% /LN%NDIdDcp% /N0%dNDIdDcu%
/NH%NDIdHpp% /NO%dNDIdLib% /NB%dNDIdBpi% /-DRC -$d+O-n+p+r+s-t-w+y+m+q+i+l+
%2 %3 %4
REM ***************************************************
REM Compile Runtime Package IndyProtocols120
REM ***************************************************
if exist %NDIdSource%\lib\Protocols\*.pas copy
%NDIdSource%\lib\Protocols\*.pas %NDIdProtocols%>nul
if exist %NDIdSource%\lib\Protocols\*.dpk copy
%NDIdSource%\lib\Protocols\*.dpk %NDIdProtocols%>nul
if exist %NDIdSource%\lib\Protocols\*.obj copy
%NDIdSource%\lib\Protocols\*.obj %NDIdProtocols%>nul
if exist %NDIdSource%\lib\Protocols\*.inc copy
%NDIdSource%\lib\Protocols\*.inc %NDIdProtocols%>nul
if exist %NDIdSource%\lib\Protocols\*.res copy
%NDIdSource%\lib\Protocols\*.res %NDIdProtocols%>nul
if exist %NDIdSource%\lib\Protocols\*.dcr copy
%NDIdSource%\lib\Protocols\*.dcr %NDIdProtocols%>nul
if exist %NDIdSource%\lib\Protocols\*.rsp copy
%NDIdSource%\lib\Protocols\*.rsp %NDIdProtocols%>nul
CD %NDIdProtocols%
%NDCBuilder%\bin\dcc32.exe IndyProtocols120.dpk /B /O%dNDIdLib% /DBCB /M /H
/W /JPHN /JL /E%dNDIdLib% /LE%NDIdBpl% /LN%NDIdDcp% /N0%dNDIdDcu%
/NH%NDIdHpp% /NO%dNDIdLib% /NB%dNDIdBpi% /-DRC -$d+O-n+p+r+s-t-w+y+m+q+i+l+
%2 %3 %4
REM ***************************************************
REM Compile Designtime Package dclIndyProtocols120
REM ***************************************************
%NDCBuilder%\bin\dcc32.exe dclIndyProtocols120.dpk /B /V /O%dNDIdLib% /DBCB
/M /H /W /JPHN /JL /E%dNDIdLib% /LE%NDIdBpl% /LN%NDIdDcp% /N0%dNDIdDcu%
/NH%NDIdHpp% /NO%dNDIdLib% /NB%dNDIdBpi% /-DRC -$d+O-n+p+r+s-t-w+y+m+q+i+l+
%2 %3 %4
REM * REM * - Debug Build End
REM * REM * - Release Build
REM ***************************************************
REM Compile Runtime Package IndySystem120
REM ***************************************************
if exist %NDIdSource%\lib\System\*.pas copy %NDIdSource%\lib\System\*.pas
%NDIdSystem%>nul
if exist %NDIdSource%\lib\System\*.dpk copy %NDIdSource%\lib\System\*.dpk
%NDIdSystem%>nul
if exist %NDIdSource%\lib\System\*.obj copy %NDIdSource%\lib\System\*.obj
%NDIdSystem%>nul
if exist %NDIdSource%\lib\System\*.inc copy %NDIdSource%\lib\System\*.inc
%NDIdSystem%>nul
if exist %NDIdSource%\lib\System\*.res copy %NDIdSource%\lib\System\*.res
%NDIdSystem%>nul
if exist %NDIdSource%\lib\System\*.dcr copy %NDIdSource%\lib\System\*.dcr
%NDIdSystem%>nul
if exist %NDIdSource%\lib\System\*.rsp copy %NDIdSource%\lib\System\*.rsp
%NDIdSystem%>nul
CD %NDIdSystem%
%NDCBuilder%\bin\dcc32.exe IndySystem120.dpk /B /O%NDIdLib% /DBCB /M /H /W
/JPHN /JL /E%NDIdLib% /LE%NDIdBpl% /LN%NDIdDcp% /N0%NDIdDcu% /NH%NDIdHpp%
/NO%NDIdLib% /NB%NDIdBpi% /-DRC -$d-l-n+p+r-s-t-w-y- %2 %3 %4
REM ***************************************************
REM Compile Runtime Package IndyCore120
REM ***************************************************
if exist %NDIdSource%\lib\Core\*.pas copy %NDIdSource%\lib\Core\*.pas
%NDIdCore%>nul
if exist %NDIdSource%\lib\Core\*.dpk copy %NDIdSource%\lib\Core\*.dpk
%NDIdCore%>nul
if exist %NDIdSource%\lib\Core\*.obj copy %NDIdSource%\lib\Core\*.obj
%NDIdCore%>nul
if exist %NDIdSource%\lib\Core\*.inc copy %NDIdSource%\lib\Core\*.inc
%NDIdCore%>nul
if exist %NDIdSource%\lib\Core\*.res copy %NDIdSource%\lib\Core\*.res
%NDIdCore%>nul
if exist %NDIdSource%\lib\Core\*.dcr copy %NDIdSource%\lib\Core\*.dcr
%NDIdCore%>nul
if exist %NDIdSource%\lib\Core\*.rsp copy %NDIdSource%\lib\Core\*.rsp
%NDIdCore%>nul
CD %NDIdCore%
%NDCBuilder%\bin\dcc32.exe IndyCore120.dpk /B /O%NDIdLib% /DBCB /M /H /W
/JPHN /JL /E%NDIdLib% /LE%NDIdBpl% /LN%NDIdDcp% /N0%NDIdDcu% /NH%NDIdHpp%
/NO%NDIdLib% /NB%NDIdBpi% /-DRC -$d-l-n+p+r-s-t-w-y- %2 %3 %4
REM ***************************************************
REM Compile Designtime Package dclIndyCore120
REM ***************************************************
%NDCBuilder%\bin\dcc32.exe dclIndyCore120.dpk /B /O%NDIdLib% /DBCB /M /H /W
/JPHN /JL /E%NDIdLib% /LE%NDIdBpl% /LN%NDIdDcp% /N0%NDIdDcu% /NH%NDIdHpp%
/NO%NDIdLib% /NB%NDIdBpi% /-DRC -$d-l-n+p+r-s-t-w-y- %2 %3 %4
REM ***************************************************
REM Compile Runtime Package IndyProtocols120
REM ***************************************************
if exist %NDIdSource%\lib\Protocols\*.pas copy
%NDIdSource%\lib\Protocols\*.pas %NDIdProtocols%>nul
if exist %NDIdSource%\lib\Protocols\*.dpk copy
%NDIdSource%\lib\Protocols\*.dpk %NDIdProtocols%>nul
if exist %NDIdSource%\lib\Protocols\*.obj copy
%NDIdSource%\lib\Protocols\*.obj %NDIdProtocols%>nul
if exist %NDIdSource%\lib\Protocols\*.inc copy
%NDIdSource%\lib\Protocols\*.inc %NDIdProtocols%>nul
if exist %NDIdSource%\lib\Protocols\*.res copy
%NDIdSource%\lib\Protocols\*.res %NDIdProtocols%>nul
if exist %NDIdSource%\lib\Protocols\*.dcr copy
%NDIdSource%\lib\Protocols\*.dcr %NDIdProtocols%>nul
if exist %NDIdSource%\lib\Protocols\*.rsp copy
%NDIdSource%\lib\Protocols\*.rsp %NDIdProtocols%>nul
CD %NDIdProtocols%
%NDCBuilder%\bin\dcc32.exe IndyProtocols120.dpk /B /O%NDIdLib% /DBCB /M /H
/W /JPHN /JL /E%NDIdLib% /LE%NDIdBpl% /LN%NDIdDcp% /N0%NDIdDcu% /NH%NDIdHpp%
/NO%NDIdLib% /NB%NDIdBpi% /-DRC -$d-l-n+p+r-s-t-w-y- %2 %3 %4
REM ***************************************************
REM Compile Designtime Package dclIndyProtocols120
REM ***************************************************
%NDCBuilder%\bin\dcc32.exe dclIndyProtocols120.dpk /B /O%NDIdLib% /DBCB /M
/H /W /JPHN /JL /E%NDIdLib% /LE%NDIdBpl% /LN%NDIdDcp% /N0%NDIdDcu%
/NH%NDIdHpp% /NO%NDIdLib% /NB%NDIdBpi% /-DRC -$d-l-n+p+r-s-t-w-y- %2 %3 %4
REM * REM * - Release Build End
REM ***************************************************
REM Delete third-party .obj files
REM before compiling the .lib file
REM ***************************************************
del adler32.obj>nul
del compress.obj>nul
del crc32.obj>nul
del deflate.obj>nul
del example.obj>nul
del gzio.obj>nul
del infback.obj>nul
del inffast.obj>nul
del inflate.obj>nul
del inftrees.obj>nul
del minigzip.obj>nul
del trees.obj>nul
del uncompr.obj>nul
del zutil.obj>nul
goto EndExit
:enderror
call ..\Lib\clean.bat
cd ..\Lib
goto EndExit
:enderrmsg
echo Error!
goto EndExit
:endok
:EndExit
Echo End Batch File
@Pause
______________________________________________
 

Re:Re: Update Indy10 in C++Builder 2007

When I try to build it with the fullc120.bat file I always get the error
message that it haven't found the files "indysystem120.res"
"dclindycore.res" and so on. In other words it doesn't find the
indy*.res files. I did a search in all those indy directories and I too
cannot find them. How did it work in your batch-file?
 

Re:Re: Update Indy10 in C++Builder 2007

Ups - forgot about that
I simply copied the *100.res files to *120.res
Roland
"riweber" < XXXX@XXXXX.COM >wrote in message
Quote
When I try to build it with the fullc120.bat file I always get the error
message that it haven't found the files "indysystem120.res"
"dclindycore.res" and so on. In other words it doesn't find the
indy*.res files. I did a search in all those indy directories and I too
cannot find them. How did it work in your batch-file?
 

Re:Re: Update Indy10 in C++Builder 2007

The evil that is line wrapping.
.T
 

Re:Re: Update Indy10 in C++Builder 2007

Joe Pasquariello wrote:
Quote

It sounds like you've made a lot of progress. Would you be willing to share
what you learned so that we can try to develop a procedure that others can
use and avoid some of the learning curve?

I have taken the two batch files that Roland posted and modified them
slightly. I have posted a zip file that contains his original batch
files, my modified batch files (the ones with the *V2.bat names), and
some instructional text files in the attachments group with the subject
"Updating RAD Studio to the newer Indy 10".
My modifications retain the existing Indy Help files (they are better
than no help at all), and reduce the number of unnecessary files copied
into the source directories. They also build the missing *.res files
from the *.rc files include in the SVN checkout.
I downloaded the latest Indy 10 source from the SVN server using
TortoiseSVN.
Hopefully the new batch files and instructions help others to update to
the newer version of Indy 10.
Dennis Cote