Delphi Compiler Error
E2203 $WEAKPACKAGEUNIT ‘%s’ contains global data
Reason for the Error & Solution
A unit which was marked with $WEAKPACKAGEUNIT is being placed into a package, but it contains global data. It is not legal for such a unit to contain global data or initialization or finalization code.
The only solutions to this problem are to remove the $WEAKPACKAGEUNIT mark, or remove the global data from the unit before it is put into the package.