1. Warning: ifdef !KEY is no longer valid as of revision 1498
- Posted by jeremy (admin) Mar 18, 2009
- 824 views
I alluded to this some time ago and today is the day it has changed. The previously correct ifdef statement:
ifdef !WIN32 then
is no longer valid. It has been changed to the same not syntax as the if statement:
if not find(...) then ifdef not KEY then
The standard library has been changed as well to the new syntax, thus, you must have at least 4.0a3 to compile future versions of Euphoria, otherwise, the standard library will not be understood.
Your local source code must change as well before upgrading to anything on or after SVN revision 1498.
Jeremy