/usr/lib/lazarus/0.9.30.4/lcl/lclbasedowngrade.pas is in lazarus-src-0.9.30.4 0.9.30.4-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | unit lclbasedowngrade;
{$mode objfpc}{$H+}
{$error Your project depends on LCLBase. Replace the dependency with LCL in the project inspector. }
{ LCLBase does not work without LCL. LCLBase works only with 0.9.31+.
Simply use only LCL as dependency in the project inspector. This will
work with all versions of Lazarus. }
interface
uses
Classes, SysUtils;
implementation
end.
|