Browse Source
* when compiled for statically linking the sqlite3 library, add a linklib
statement for darwin (see mantis #14208 )
git-svn-id: trunk@13484 -
Jonas Maebe
16 years ago
|
@@ -17,6 +17,10 @@ uses
|
|
|
SysUtils, DynLibs;
|
|
|
{$else}
|
|
|
DynLibs;
|
|
|
+
|
|
|
+{$ifdef darwin}
|
|
|
+{$linklib sqlite3}
|
|
|
+{$endif}
|
|
|
{$endif}
|
|
|
|
|
|
const
|