Make offsets with "darwin" os-type recognized as Apple, rather than ignored

develop
Timothy Collett 2012-06-14 13:42:06 -04:00
parent c6700585bc
commit 12543d6a5b
2 changed files with 7 additions and 1 deletions

@ -1 +1 @@
Subproject commit c85e9fb35d3510c5dcc367056cda3237d77a7add
Subproject commit f2722ca9ac49f8f13da4ddcfcb0fa47a0eb30454

@ -105,6 +105,12 @@ void VersionInfoFactory::ParseVersion (TiXmlElement* entry, VersionInfo* mem)
// this is wrong... I'm not going to do base image relocation on linux though.
mem->setBase(0x0);
}
else if(os == "darwin")
{
mem->setOS(OS_APPLE);
// this is wrong... I'm not going to do base image relocation on linux though.
mem->setBase(0x0);
}
else
{
return; // ignore it if it's invalid