The changes to wxLED in svn r8764 break the build on linux.
The cause is, that the system headers of wxWidgets are included before our own.
This happens because wx-config is called in Compiler options and zthe search-directories are added later.
The changes in ledctrl.cpp are not compatible with the enum in the system-ledctrl.h, where wxLED_ALIGN_CENTER and wxLED_ALIGN_MASK still have the same value (0x04).
This can be avoided by manually adding the search dir to the targets compiler options and prepending them, so our includes are searched before the system-includes.
But apart from this, we can (pbviously) always run into trouble, if we have our own versions of controls, that are now part of wxWidgets.
Was the update really needed, or woukld it be better to use the wxWidgets version of wxLED ?
Should we rename "our" version ?
What's the best way to handle this for now (and for the future) ?