Neither of the errors you mentioned are compiler errors. Its unlikely they are caused by the compiler itself. They are probably coming from somewhere else in the call chain leading up to the compile.
A short term solution would be to compile from the command line. MSBuild is the build engine Delphi uses under the hood.
- Edit whatever Indy files in the IDE as you normally would, save your changes then close the IDE.
- Open the Rad Studio Command Prompt from the start menu. This will make sure the proper environment variables are set to run the command line build. You could also use the standard command prompt and run rsvars.bat to accomplish the same thing.
- Use
cd to change directories to the location of IndyProtocols.dpk
- Type
msbuild IndyProtocols.dpk /target:Build /p:config=Release
If you want to do a debug version just change /p:config=Release to /p:config=Debug. Note that case is important when working with msbuild because the project files are xml, which is case sensitive.
Also, for what its worth you should try to avoid making changes directly to the libraries shipped with the IDE. If you found a bug in a supplied library that you need fixed for a specific project you can usually get by with copying the offending file into your project's folder and making your changes to it there. You'll also likely need to copy several other dependent files as well. If you take this approach the compiler will inform you which dependents need to be copied with errors such as Unit * was compiled with a different version of *.*
Now if you really want to debug the IDE you can try but the rtl and coreide packages used throughout the IDE and are both compiled as release versions (no debugging info) so it may be difficult to determine what's causing the errors you're seeing.
Anyways, you can run a second instance of the IDE with the IndyProtocols.dpk loaded in the project manager. Then use Run > Attach to Process from the first IDE instance to attach the debugger to the second IDE instance. After that just try building IndyProtocols.dpk from the second IDE instance. If all goes as expected the debugger will catch the errors and let you break at where they occurred so you can dig around.