Search found 3 matches
- 26.08.2009, 20:10
- Forum: 6.6 - stable
- Topic: Update ZPlainFirebird21 for Mac OSX
- Replies: 0
- Views: 475
Update ZPlainFirebird21 for Mac OSX
This code support Firebird in Mac OSX {$ifdef Unix} {$ifdef Darwin} // Darwin is the base OS name of Mac OS X, like NT is the name of the Win2k/XP/Vista kernel. Mac OS X = Darwin + GUI. LINUX1_DLL_LOCATION = 'libfbclient.dylib'; LINUX1_DLL_LOCATION_EMBEDDED = 'libfbclient.dylib'; LINUX1_IB_CRYPT_LOC...
- 08.08.2009, 16:34
- Forum: 6.6 - stable
- Topic: [Lazarus] [OSX] Sqlite in OSX - Solution
- Replies: 2
- Views: 1179
My solution is for MacOsX indeed verify the presence of Darwin and otherwise step instruction in the old Unix file ZPlainSqlite3.pas zconnection->Protocol=Sqlite-3 WINDOWS_DLL_LOCATION = 'sqlite3.dll'; {$ifdef Unix} {$ifdef Darwin} // Darwin is the base OS name of Mac OS X LINUX_DLL_LOCATION = 'libs...
- 27.07.2009, 11:52
- Forum: 6.6 - stable
- Topic: [Lazarus] [OSX] Sqlite in OSX - Solution
- Replies: 2
- Views: 1179
[Lazarus] [OSX] Sqlite in OSX - Solution
Not correct compile in OSX file ZPlainSqlite3.pas Row (60) - LINUX_DLL_LOCATION = 'libsqlite3.so'; + {$ifdef Unix} + {$ifdef Darwin} + // Darwin is the base OS name of Mac OS X, like NT is the name of the Win2k/XP/Vista kernel. Mac OS X = Darwin + GUI. + LINUX_DLL_LOCATION = 'libsqlite3.0.dylib'; + ...