* Dotted filenames for package postgres

This commit is contained in:
Michaël Van Canneyt 2023-03-06 14:58:03 +01:00
parent 077c661b2d
commit 069e4c77bc
11 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,3 @@
unit Api.Dllist;
{$DEFINE FPC_DOTTEDUNITS}
{$i dllist.pp}

View File

@ -0,0 +1,3 @@
unit Api.Dllistdyn;
{$DEFINE FPC_DOTTEDUNITS}
{$i dllistdyn.pp}

View File

@ -0,0 +1,3 @@
unit Api.Postgres;
{$DEFINE FPC_DOTTEDUNITS}
{$i postgres.pp}

View File

@ -0,0 +1,3 @@
unit Api.Postgres3;
{$DEFINE FPC_DOTTEDUNITS}
{$i postgres3.pp}

View File

@ -0,0 +1,3 @@
unit Api.Postgres3dyn;
{$DEFINE FPC_DOTTEDUNITS}
{$i postgres3dyn.pp}

View File

@ -0,0 +1,7 @@
src/postgres.pp=namespaced/Api.Postgres.pp
{s*:src/}=namespaced/
{i+:src/}
src/postgres3dyn.pp=namespaced/Api.Postgres3dyn.pp
src/dllist.pp=namespaced/Api.Dllist.pp
src/dllistdyn.pp=namespaced/Api.Dllistdyn.pp
src/postgres3.pp=namespaced/Api.Postgres3.pp

View File

@ -1,4 +1,6 @@
{$IFNDEF FPC_DOTTEDUNITS}
unit dllist;
{$ENDIF FPC_DOTTEDUNITS}
interface

View File

@ -3,14 +3,21 @@
when finished.
}
{$IFNDEF FPC_DOTTEDUNITS}
unit DllistDyn;
{$ENDIF FPC_DOTTEDUNITS}
{$mode objfpc}{$H+}
interface
{$IFDEF FPC_DOTTEDUNITS}
uses
System.DynLibs, System.SysUtils;
{$ELSE FPC_DOTTEDUNITS}
uses
dynlibs, SysUtils;
{$ENDIF FPC_DOTTEDUNITS}
{$PACKRECORDS C}

View File

@ -1,8 +1,14 @@
{$IFNDEF FPC_DOTTEDUNITS}
unit postgres;
{$ENDIF FPC_DOTTEDUNITS}
interface
{$IFDEF FPC_DOTTEDUNITS}
uses Api.Dllist;
{$ELSE FPC_DOTTEDUNITS}
uses dllist;
{$ENDIF FPC_DOTTEDUNITS}
{$linklib pq}
{$linklib c}

View File

@ -5,11 +5,17 @@
It is for postgreSQL version 7.4 and higher with support for the v3.0
connection-protocol
}
{$IFNDEF FPC_DOTTEDUNITS}
unit postgres3;
{$ENDIF FPC_DOTTEDUNITS}
interface
{$IFDEF FPC_DOTTEDUNITS}
uses Api.Dllist;
{$ELSE FPC_DOTTEDUNITS}
uses dllist;
{$ENDIF FPC_DOTTEDUNITS}
{$PACKRECORDS C}

View File

@ -5,14 +5,21 @@
when finished.
}
{$IFNDEF FPC_DOTTEDUNITS}
unit postgres3dyn;
{$ENDIF FPC_DOTTEDUNITS}
{$mode objfpc}{$H+}
interface
{$IFDEF FPC_DOTTEDUNITS}
uses
System.DynLibs, System.SysUtils, Api.Dllistdyn, System.CTypes;
{$ELSE FPC_DOTTEDUNITS}
uses
dynlibs, SysUtils, dllistdyn, ctypes;
{$ENDIF FPC_DOTTEDUNITS}
{$IFDEF Unix}
const