This is a known issue if you link with (the old, and not really supported) msvcrt.lib. It was include a long time ago, as a service to some users. It will not be included in the future. The '.rdata' section is by agreement used for read-only data, and the 'flags' descibe it as such. For some reason, one '.rdata' section in msvcrt.lib is flagged as read-write - hence the warning. So it looks like a bug, but it's not mine. Microsoft may have fixed this in the 2005 version, but I havn't checked. The default is to use Pelles C runtime library (crt.lib, crtmt.lib, or pocrt.lib - depending on settings).
I have not added a system to the linker to disable certain warnings, since this is probably the only one that might need it. It seems like overkill to add it for a single warning...