Feature request: DefaultUsePublishedOnly in RTTI should depend on -dENABLE_DELPHI_RTTI
I suggest that depending on this flag, we immediately conclude that the user needs full RTTI. An example of implementation in `rtti.pp` (but it doesn't work for me in this form now, because the `ENABLE_DELPHI_RTTI` constant is still considered undeclared)
```
Const
{$IF DEFINED(FPC_DOTTEDUNITS) or DEFINED(ENABLE_DELPHI_RTTI)}
DefaultUsePublishedOnly = False;
{$ELSE}
DefaultUsePublishedOnly = True;
{$ENDIF}
```
issue