|
From: Micha N. <md...@us...> - 2004-08-18 14:21:42
|
Update of /cvsroot/tdbf/tdbf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20253 Modified Files: Dbf_Wtil.pas history.txt Log Message: fixed: kylix compilation Index: history.txt =================================================================== RCS file: /cvsroot/tdbf/tdbf/history.txt,v retrieving revision 1.59 retrieving revision 1.60 diff -C2 -d -r1.59 -r1.60 *** history.txt 18 Aug 2004 13:49:59 -0000 1.59 --- history.txt 18 Aug 2004 14:21:32 -0000 1.60 *************** *** 49,52 **** --- 49,53 ---- - fixed: crash when calling {un,}locktable on closed dataset (rep by sysklop) - fixed: use correct dbf version when creating table to decide field types + - fixed: kylix compilation Index: Dbf_Wtil.pas =================================================================== RCS file: /cvsroot/tdbf/tdbf/Dbf_Wtil.pas,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Dbf_Wtil.pas 2 Aug 2004 10:39:28 -0000 1.10 --- Dbf_Wtil.pas 18 Aug 2004 14:21:25 -0000 1.11 *************** *** 7,15 **** {$ifndef WIN32} uses - {$ifdef KYLIX} - Libc, - {$endif} {$ifdef FPC} BaseUnix, {$endif} Types, SysUtils, Classes; --- 7,14 ---- {$ifndef WIN32} uses {$ifdef FPC} BaseUnix, + {$else} + Libc, {$endif} Types, SysUtils, Classes; |