mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-16 04:10:31 +01:00
* fixes sqlite3 for freeBSD (and possibly other BSDs)
* fixes testapiv3x.pp to be compilable on unix as well git-svn-id: trunk@3424 -
This commit is contained in:
parent
68c2eb7a75
commit
68f3c258d8
@ -1,4 +1,10 @@
|
||||
{$mode objfpc}
|
||||
|
||||
{$ifdef BSD}
|
||||
{$linklib c}
|
||||
{$linklib pthread}
|
||||
{$endif}
|
||||
|
||||
unit sqlite3;
|
||||
|
||||
interface
|
||||
|
||||
@ -3,7 +3,7 @@ program testapiv3x;
|
||||
{$APPTYPE CONSOLE}
|
||||
{$MODE DELPHI}
|
||||
|
||||
uses windows, sqlite3, sysutils;
|
||||
uses sqlite3, sysutils;
|
||||
|
||||
const
|
||||
DBFILE='dbtest.db';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user