/usr/lib/lazarus/0.9.30.4/lcl/alllclunits.pp 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 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | { $Id: alllclunits.pp 25203 2010-05-05 07:49:44Z sekelsenmat $ }
{
*****************************************************************************
alllclunits.pp
dummy unit to compile all units
*****************************************************************************
* *
* This file is part of the Lazarus Component Library (LCL) *
* *
* See the file COPYING.modifiedLGPL.txt, included in this distribution, *
* for details about the copyright. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
*****************************************************************************
}
unit AllLCLUnits;
{ At least 2.4.0 is required, except for wince which supports fpc 2.2.0+ too }
{$ifdef Wince}
{$if defined(ver1) or (defined(ver2) and (fpc_release<2))}
{$fatal Lazarus for WinCE requires at least FPC 2.2.0}
{$endif}
{$else}
{$if defined(ver1) or (defined(ver2) and (fpc_release<4))}
{$fatal Lazarus requires at least FPC 2.4.0}
{$endif}
{$endif}
{$mode objfpc}{$H+}
interface
uses
// lcl version
LCLVersion,
// resource strings
LCLStrConsts,
// base classes
FPCAdds, LazLinkedList, DynHashArray, LCLMemManager, AvgLvlTree, DynQueue,
StringHashList, ExtendedStrings, DynamicArray, UTrace, TextStrings,
// base types and base functions
LCLProc, LCLType, LCLResCache, GraphMath, GraphType, GraphUtil,
LMessages, LResources, LConvEncoding, LCLUnicodeData, FileUtil, Translations,
LazConfigStorage,
// the interface base
InterfaceBase,
IntfGraphics,
// components and functions
LCLClasses, AsyncProcess, FileCtrl, Maps, HelpIntfs, LazHelpIntf, LazHelpHTML,
StdActns, Buttons, Extctrls, Calendar, Clipbrd, Forms, LCLIntf, Spin,
Comctrls, Graphics, StdCtrls, Arrow, Controls, ImgList, Menus, Toolwin,
Dialogs, Messages, ActnList, Grids, MaskEdit, ButtonPanel,
Printers, PostScriptPrinter, PostScriptCanvas, CheckLst, PairSplitter,
ExtDlgs, DBCtrls, DBGrids, DBActns, EditBtn, ExtGraphics, ColorBox,
PropertyStorage, IniPropStorage, XMLPropStorage, Chart, LDockTree, LDockCtrl,
CalendarPopup, Themes, PopupNotifier, ShellCtrls, UTF8Process,
LCLMessageGlue,
RubberBand,
// widgetset skeleton
WSArrow, WSButtons, WSCalendar,
WSCheckLst, WSComCtrls, WSControls,
WSDialogs, WSDesigner, WSExtCtrls,
WSExtDlgs, WSForms, WSGrids, WSImgList, WSMenus,
WSPairSplitter, WSSpin, WSStdCtrls, WSToolwin,
WSProc,
// Other units
DefaultTranslator;
implementation
end.
|