On 3/18/07, anthony kelly <atkellyx@xxxxxxxxxxxx> wrote: > I could not compile many plugins with 1.5.1 until I made the following > change in ./include/vdr/osdbase.h, in "class cOsdObject" I moved "bool > needsFastResponse;" from private to public scope. There is now a SetNeedsFastResponse function to set that bootlean. Your change to vdr works but you might simply want to update plugins as most of the common ones have been fixed. If you want to add 1.5.1 compatibility to a plugin, you can follow the following code example: #if APIVERSNUM >= 10500 SetNeedsFastResponse(false); #else needsFastResponse = false; #endif