don't worry, this is actually a new "feature" of the april beta dev tools. They've fixed precompiling or whatever that omniframeworks tried to work around. To fix the problem:
</font><blockquote><font size="1" face="Geneva, Verdana, Arial, sans-serif">quote:</font><hr /><font size="1" face="Geneva, Verdana, Arial, sans-serif"> It looks like the following is the cause of the issue.
#if defined(NeXT_PDO) || defined(sun)
#define NSSTRINGIFY(name) @ ## #name
#else
// cpp-precomp has a bug in it that makes us have to do this.
#define NSSTRINGIFY(name) @ ## '"' ## name ## '"'
#endif
If I replace the above with just the following things compile.
#define NSSTRINGIFY(name) @ ## #name
</font><hr /></blockquote><font size="1" face="Geneva, Verdana, Arial, sans-serif">Just search the omnibase (i think it is) for "#if defined(NeXT_PDO) || defined(sun)" and replace that block as was described above.