mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-20 13:29:14 +02:00
* Dotted filenames for package libtar
This commit is contained in:
parent
88ba748ef0
commit
9c15301b34
3
packages/libtar/namespaced/Libx.Libtar.pp
Normal file
3
packages/libtar/namespaced/Libx.Libtar.pp
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
unit Libx.Libtar;
|
||||||
|
{$DEFINE FPC_DOTTEDUNITS}
|
||||||
|
{$i libtar.pp}
|
3
packages/libtar/namespaces.lst
Normal file
3
packages/libtar/namespaces.lst
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
src/libtar.pp=namespaced/Libx.Libtar.pp
|
||||||
|
{s*:src/}=namespaced/
|
||||||
|
{i+:src/}
|
@ -84,7 +84,9 @@ Date Author Changes
|
|||||||
Mostly rawbytestring and a couple of more hary typecasts.
|
Mostly rawbytestring and a couple of more hary typecasts.
|
||||||
*)
|
*)
|
||||||
|
|
||||||
|
{$IFNDEF FPC_DOTTEDUNITS}
|
||||||
UNIT libtar;
|
UNIT libtar;
|
||||||
|
{$ENDIF FPC_DOTTEDUNITS}
|
||||||
|
|
||||||
INTERFACE
|
INTERFACE
|
||||||
|
|
||||||
@ -97,6 +99,19 @@ INTERFACE
|
|||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
|
||||||
|
{$IFDEF FPC_DOTTEDUNITS}
|
||||||
|
USES
|
||||||
|
{$IFDEF LIBCUNIT}
|
||||||
|
Api.Libc, // MvdV: Nothing is used from this???
|
||||||
|
{$ENDIF}
|
||||||
|
{$ifdef Unix}
|
||||||
|
UnixApi.Types, UnixApi.Base, UnixApi.Unix,
|
||||||
|
{$endif}
|
||||||
|
(*$IFDEF MSWINDOWS *)
|
||||||
|
WinApi.Windows,
|
||||||
|
(*$ENDIF *)
|
||||||
|
System.SysUtils, System.Classes;
|
||||||
|
{$ELSE FPC_DOTTEDUNITS}
|
||||||
USES
|
USES
|
||||||
{$IFDEF LIBCUNIT}
|
{$IFDEF LIBCUNIT}
|
||||||
Libc, // MvdV: Nothing is used from this???
|
Libc, // MvdV: Nothing is used from this???
|
||||||
@ -108,6 +123,7 @@ USES
|
|||||||
Windows,
|
Windows,
|
||||||
(*$ENDIF *)
|
(*$ENDIF *)
|
||||||
SysUtils, Classes;
|
SysUtils, Classes;
|
||||||
|
{$ENDIF FPC_DOTTEDUNITS}
|
||||||
|
|
||||||
|
|
||||||
TYPE
|
TYPE
|
||||||
|
Loading…
Reference in New Issue
Block a user