Probably a problem with the ifdef in graphics
{$IF FPC_FULLVERSION>=30300}
For older fpc graphic defines a TFontStyle in the unit Graphic. And even if it has the same declaration, it is a distinct type.
For FPC trunk, its just a forward in graphics
TFontStyle = System.UITypes.TFontStyle;
But FPC 3.2.4 or 3.2.3 is older.
Probably the ifdef needs to check >= 30203
Please report on the issue tracker, I currently don't have the time to make the change. And it will be forgotten if not reported.