mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 13:28:07 +02:00
* Dotted filenames for package libc
This commit is contained in:
parent
3f78ba87a3
commit
88ba748ef0
3
packages/libc/namespaced/Api.Kerneldefs.pp
Normal file
3
packages/libc/namespaced/Api.Kerneldefs.pp
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
unit Api.Kerneldefs;
|
||||||
|
{$DEFINE FPC_DOTTEDUNITS}
|
||||||
|
{$i kerneldefs.pp}
|
3
packages/libc/namespaced/Api.Kernelioctl.pp
Normal file
3
packages/libc/namespaced/Api.Kernelioctl.pp
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
unit Api.Kernelioctl;
|
||||||
|
{$DEFINE FPC_DOTTEDUNITS}
|
||||||
|
{$i kernelioctl.pp}
|
3
packages/libc/namespaced/Api.Libc.pp
Normal file
3
packages/libc/namespaced/Api.Libc.pp
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
unit Api.Libc;
|
||||||
|
{$DEFINE FPC_DOTTEDUNITS}
|
||||||
|
{$i libc.pp}
|
5
packages/libc/namespaces.lst
Normal file
5
packages/libc/namespaces.lst
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
src/libc.pp=namespaced/Api.Libc.pp
|
||||||
|
{s*:src/}=namespaced/
|
||||||
|
{i+:src/}
|
||||||
|
src/kerneldefs.pp=namespaced/Api.Kerneldefs.pp
|
||||||
|
src/kernelioctl.pp=namespaced/Api.Kernelioctl.pp
|
@ -5,7 +5,9 @@
|
|||||||
{$error The KernelDefs unit is a legacy Kylix-compatibility unit that is only supported on Linux/i386. It is known not to work in various ways on other OSes and architectures (including Linux/x86_64). }
|
{$error The KernelDefs unit is a legacy Kylix-compatibility unit that is only supported on Linux/i386. It is known not to work in various ways on other OSes and architectures (including Linux/x86_64). }
|
||||||
{$endif}
|
{$endif}
|
||||||
|
|
||||||
|
{$IFNDEF FPC_DOTTEDUNITS}
|
||||||
unit kerneldefs;
|
unit kerneldefs;
|
||||||
|
{$ENDIF FPC_DOTTEDUNITS}
|
||||||
|
|
||||||
interface
|
interface
|
||||||
// Translated from asm/types.h (i386)
|
// Translated from asm/types.h (i386)
|
||||||
|
@ -5,7 +5,9 @@
|
|||||||
{$error The KernelIoctl unit is a legacy Kylix-compatibility unit that is only supported on Linux/i386. It is known not to work in various ways on other OSes and architectures (including Linux/x86_64). }
|
{$error The KernelIoctl unit is a legacy Kylix-compatibility unit that is only supported on Linux/i386. It is known not to work in various ways on other OSes and architectures (including Linux/x86_64). }
|
||||||
{$endif}
|
{$endif}
|
||||||
|
|
||||||
|
{$IFNDEF FPC_DOTTEDUNITS}
|
||||||
Unit kernelioctl;
|
Unit kernelioctl;
|
||||||
|
{$ENDIF FPC_DOTTEDUNITS}
|
||||||
|
|
||||||
Interface
|
Interface
|
||||||
|
|
||||||
|
@ -6,11 +6,17 @@
|
|||||||
{$error The KernelDefs unit is a legacy Kylix-compatibility unit that is only supported on Linux/i386. It is known not to work in various ways on other OSes and architectures (including Linux/x86_64). }
|
{$error The KernelDefs unit is a legacy Kylix-compatibility unit that is only supported on Linux/i386. It is known not to work in various ways on other OSes and architectures (including Linux/x86_64). }
|
||||||
{$endif}
|
{$endif}
|
||||||
|
|
||||||
|
{$IFNDEF FPC_DOTTEDUNITS}
|
||||||
unit libc deprecated 'Unportable Kylix legacy unit that only exists on Linux/x86. see http://wiki.freepascal.org/libc_unit ';
|
unit libc deprecated 'Unportable Kylix legacy unit that only exists on Linux/x86. see http://wiki.freepascal.org/libc_unit ';
|
||||||
|
{$ENDIF FPC_DOTTEDUNITS}
|
||||||
|
|
||||||
Interface
|
Interface
|
||||||
|
|
||||||
|
{$IFDEF FPC_DOTTEDUNITS}
|
||||||
|
uses UnixApi.Types,Api.Kerneldefs;
|
||||||
|
{$ELSE FPC_DOTTEDUNITS}
|
||||||
uses unixtype,kerneldefs;
|
uses unixtype,kerneldefs;
|
||||||
|
{$ENDIF FPC_DOTTEDUNITS}
|
||||||
|
|
||||||
Const
|
Const
|
||||||
clib = 'c';
|
clib = 'c';
|
||||||
@ -230,7 +236,11 @@ Const
|
|||||||
|
|
||||||
Implementation
|
Implementation
|
||||||
|
|
||||||
|
{$IFDEF FPC_DOTTEDUNITS}
|
||||||
|
uses Api.Kernelioctl;
|
||||||
|
{$ELSE FPC_DOTTEDUNITS}
|
||||||
uses kernelioctl;
|
uses kernelioctl;
|
||||||
|
{$ENDIF FPC_DOTTEDUNITS}
|
||||||
|
|
||||||
{$i types.inc} // types.h macros.
|
{$i types.inc} // types.h macros.
|
||||||
{$i cerrno.inc} // errno.h asm/errno.h bits/errno.h macros.
|
{$i cerrno.inc} // errno.h asm/errno.h bits/errno.h macros.
|
||||||
|
Loading…
Reference in New Issue
Block a user