EZGUI - error CS1002: Expecting ';'

I am using EZGUI in my game and although I don't get any compile errors in Unity Indie, i am getting this error in Unity iPhone:

Assets/Plugins/EZ/GUI/Controls/UIScrollList.cs(736,35): error CS1002: Expecting `;'
Assets/Plugins/EZ/GUI/Controls/UIStateToggleBtn.cs(391,52): error CS1002: Expecting `;'
Assets/Plugins/EZ/GUI/Controls/UIStateToggleBtn3D.cs(283,36): error CS1002: Expecting `;'
etc...

Almost all EZ GUI controls are throwing that error.

if I got to UIScrollList.cs(736,35), I have:

Plane ctrlPlane = default(Plane);

and if I go to UIStateToggleBtn.cs(391,52), I have:

List<TextureAnim> tempList = new List<TextureAnim>();

What's going on, I can't seem to spot the issue!

any help would be really appreciate it. Thanks

Make sure you set the .NET profile in the project preferences to the newer one - the older one doesn't allow generics