mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 20:09:25 +02:00
* Dotted filenames for package ldap
This commit is contained in:
parent
99549eec92
commit
00439969ce
3
packages/ldap/namespaced/Api.Lber.pas
Normal file
3
packages/ldap/namespaced/Api.Lber.pas
Normal file
@ -0,0 +1,3 @@
|
||||
unit Api.Lber;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i lber.pas}
|
3
packages/ldap/namespaced/Api.Ldap.pas
Normal file
3
packages/ldap/namespaced/Api.Ldap.pas
Normal file
@ -0,0 +1,3 @@
|
||||
unit Api.Ldap;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i ldap.pas}
|
4
packages/ldap/namespaces.lst
Normal file
4
packages/ldap/namespaces.lst
Normal file
@ -0,0 +1,4 @@
|
||||
src/ldap.pas=namespaced/Api.Ldap.pas
|
||||
{s*:src/}=namespaced/
|
||||
{i+:src/}
|
||||
src/lber.pas=namespaced/Api.Lber.pas
|
@ -3,7 +3,9 @@
|
||||
Copyright (C) 2006 by Ivo Steinmann
|
||||
}
|
||||
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit lber;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
{$mode objfpc}
|
||||
|
||||
|
@ -18,8 +18,13 @@
|
||||
* LBER types
|
||||
*)
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.CTypes;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
ctypes;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
type
|
||||
ppcchar = ^pcchar;
|
||||
|
@ -3,15 +3,23 @@
|
||||
Copyright (C) 2006 by Ivo Steinmann
|
||||
}
|
||||
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit ldap;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
{$mode objfpc}
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.CTypes,
|
||||
Api.Lber;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
ctypes,
|
||||
lber;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
{$linklib ldap}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user