From: Steven M. <sr...@us...> - 2005-09-04 23:16:01
|
Update of /cvsroot/instantobjects/Source/Brokers/BDE In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25205/Brokers/BDE Modified Files: InstantBDE.pas InstantBDEConnectionDefEdit.pas InstantBDEReg.pas Log Message: Add conditional compiler directives to include 'InstantDefines.inc' with appropriate '\' or '/' characters in relative paths for Windows or Linux. Index: InstantBDEConnectionDefEdit.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/BDE/InstantBDEConnectionDefEdit.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** InstantBDEConnectionDefEdit.pas 26 Aug 2005 07:15:53 -0000 1.4 --- InstantBDEConnectionDefEdit.pas 4 Sep 2005 23:15:53 -0000 1.5 *************** *** 31,35 **** unit InstantBDEConnectionDefEdit; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantBDEConnectionDefEdit; ! {$IFDEF LINUX} ! {$I '../../InstantDefines.inc'} ! {$ELSE} ! {$I '..\..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantBDEReg.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/BDE/InstantBDEReg.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** InstantBDEReg.pas 24 Jul 2005 16:34:49 -0000 1.2 --- InstantBDEReg.pas 4 Sep 2005 23:15:53 -0000 1.3 *************** *** 31,35 **** unit InstantBDEReg; ! {$I ../../InstantDefines.inc} {$IFDEF D6+} --- 31,39 ---- unit InstantBDEReg; ! {$IFDEF LINUX} ! {$I '../../InstantDefines.inc'} ! {$ELSE} ! {$I '..\..\InstantDefines.inc'} ! {$ENDIF} {$IFDEF D6+} Index: InstantBDE.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/BDE/InstantBDE.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** InstantBDE.pas 26 Aug 2005 07:15:53 -0000 1.5 --- InstantBDE.pas 4 Sep 2005 23:15:53 -0000 1.6 *************** *** 31,35 **** unit InstantBDE; ! {$I ../../InstantDefines.inc} {$IFDEF D6+} --- 31,39 ---- unit InstantBDE; ! {$IFDEF LINUX} ! {$I '../../InstantDefines.inc'} ! {$ELSE} ! {$I '..\..\InstantDefines.inc'} ! {$ENDIF} {$IFDEF D6+} |