You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(13) |
Sep
(25) |
Oct
(10) |
Nov
(19) |
Dec
(20) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
(206) |
Mar
(43) |
Apr
(25) |
May
(20) |
Jun
(69) |
Jul
(121) |
Aug
(95) |
Sep
(122) |
Oct
(213) |
Nov
(46) |
Dec
(39) |
2006 |
Jan
(28) |
Feb
(57) |
Mar
(21) |
Apr
(7) |
May
(11) |
Jun
(2) |
Jul
(8) |
Aug
(13) |
Sep
(2) |
Oct
(2) |
Nov
(20) |
Dec
(16) |
2007 |
Jan
(9) |
Feb
(15) |
Mar
|
Apr
(4) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
(1) |
Sep
(9) |
Oct
|
Nov
(1) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
(8) |
Apr
(1) |
May
|
Jun
|
Jul
(11) |
Aug
(57) |
Sep
(2) |
Oct
(6) |
Nov
|
Dec
(7) |
2010 |
Jan
(11) |
Feb
(1) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(1) |
Aug
(2) |
Sep
(27) |
Oct
(3) |
Nov
(7) |
Dec
(1) |
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(10) |
Oct
|
Nov
|
Dec
|
2012 |
Jan
(8) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(3) |
Nov
(1) |
Dec
(1) |
2013 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
(4) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
(1) |
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(3) |
Oct
|
Nov
(4) |
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: Steven M. <sr...@us...> - 2005-09-04 23:16:08
|
Update of /cvsroot/instantobjects/Source/Brokers/ADO In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25205/Brokers/ADO Modified Files: InstantADO.pas InstantADOReg.pas Log Message: Add conditional compiler directives to include 'InstantDefines.inc' with appropriate '\' or '/' characters in relative paths for Windows or Linux. Index: InstantADOReg.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/ADO/InstantADOReg.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** InstantADOReg.pas 24 Jul 2005 16:20:20 -0000 1.2 --- InstantADOReg.pas 4 Sep 2005 23:15:53 -0000 1.3 *************** *** 30,34 **** --- 30,38 ---- unit InstantADOReg; + {$IFDEF LINUX} {$I '../../InstantDefines.inc'} + {$ELSE} + {$I '..\..\InstantDefines.inc'} + {$ENDIF} interface Index: InstantADO.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/ADO/InstantADO.pas,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** InstantADO.pas 28 Aug 2005 04:23:38 -0000 1.13 --- InstantADO.pas 4 Sep 2005 23:15:53 -0000 1.14 *************** *** 31,35 **** --- 31,39 ---- unit InstantADO; + {$IFDEF LINUX} {$I '../../InstantDefines.inc'} + {$ELSE} + {$I '..\..\InstantDefines.inc'} + {$ENDIF} interface |
Update of /cvsroot/instantobjects/Source/Design In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25205/Design Modified Files: InstantAbout.pas InstantAttributeEditor.pas InstantClassEditor.pas InstantCommandEditor.pas InstantDesignResources.pas InstantDesignTools.pas InstantDesignUtils.pas InstantDialog.pas InstantDualList.pas InstantEdit.pas InstantModelExpert.pas InstantModelExplorer.pas InstantOTA.pas InstantReg.pas InstantUnitSelect.pas InstantWizard.pas Log Message: Add conditional compiler directives to include 'InstantDefines.inc' with appropriate '\' or '/' characters in relative paths for Windows or Linux. Index: InstantDesignTools.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantDesignTools.pas,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** InstantDesignTools.pas 24 Jul 2005 16:34:57 -0000 1.7 --- InstantDesignTools.pas 4 Sep 2005 23:15:54 -0000 1.8 *************** *** 31,35 **** unit InstantDesignTools; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantDesignTools; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantModelExplorer.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantModelExplorer.pas,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** InstantModelExplorer.pas 16 Aug 2005 23:38:33 -0000 1.11 --- InstantModelExplorer.pas 4 Sep 2005 23:15:54 -0000 1.12 *************** *** 31,35 **** unit InstantModelExplorer; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantModelExplorer; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantEdit.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantEdit.pas,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** InstantEdit.pas 24 Jul 2005 16:34:58 -0000 1.6 --- InstantEdit.pas 4 Sep 2005 23:15:54 -0000 1.7 *************** *** 31,35 **** unit InstantEdit; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantEdit; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantOTA.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantOTA.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** InstantOTA.pas 24 Jul 2005 16:34:58 -0000 1.5 --- InstantOTA.pas 4 Sep 2005 23:15:54 -0000 1.6 *************** *** 33,37 **** interface ! {$I ../../InstantDefines.inc} {$IFDEF D7+} --- 33,41 ---- interface ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} {$IFDEF D7+} Index: InstantDesignResources.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantDesignResources.pas,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** InstantDesignResources.pas 24 Jul 2005 16:34:57 -0000 1.7 --- InstantDesignResources.pas 4 Sep 2005 23:15:54 -0000 1.8 *************** *** 31,35 **** unit InstantDesignResources; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantDesignResources; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantDesignUtils.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantDesignUtils.pas,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** InstantDesignUtils.pas 24 Jul 2005 16:34:57 -0000 1.9 --- InstantDesignUtils.pas 4 Sep 2005 23:15:54 -0000 1.10 *************** *** 31,35 **** unit InstantDesignUtils; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantDesignUtils; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantCommandEditor.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantCommandEditor.pas,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** InstantCommandEditor.pas 24 Jul 2005 16:34:57 -0000 1.6 --- InstantCommandEditor.pas 4 Sep 2005 23:15:54 -0000 1.7 *************** *** 31,35 **** unit InstantCommandEditor; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantCommandEditor; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantDialog.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantDialog.pas,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** InstantDialog.pas 24 Jul 2005 16:34:58 -0000 1.6 --- InstantDialog.pas 4 Sep 2005 23:15:54 -0000 1.7 *************** *** 31,35 **** unit InstantDialog; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantDialog; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantReg.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantReg.pas,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** InstantReg.pas 24 Jul 2005 16:34:58 -0000 1.10 --- InstantReg.pas 4 Sep 2005 23:15:54 -0000 1.11 *************** *** 32,36 **** unit InstantReg; ! {$I ../../InstantDefines.inc} interface --- 32,40 ---- unit InstantReg; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantWizard.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantWizard.pas,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** InstantWizard.pas 24 Jul 2005 16:34:58 -0000 1.7 --- InstantWizard.pas 4 Sep 2005 23:15:54 -0000 1.8 *************** *** 31,35 **** unit InstantWizard; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantWizard; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantAttributeEditor.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantAttributeEditor.pas,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** InstantAttributeEditor.pas 15 Aug 2005 06:56:20 -0000 1.18 --- InstantAttributeEditor.pas 4 Sep 2005 23:15:54 -0000 1.19 *************** *** 33,37 **** interface ! {$I ../../InstantDefines.inc} uses --- 33,41 ---- interface ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} uses Index: InstantAbout.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantAbout.pas,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** InstantAbout.pas 24 Jul 2005 16:34:57 -0000 1.7 --- InstantAbout.pas 4 Sep 2005 23:15:54 -0000 1.8 *************** *** 31,35 **** unit InstantAbout; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantAbout; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantUnitSelect.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantUnitSelect.pas,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** InstantUnitSelect.pas 24 Jul 2005 16:34:58 -0000 1.7 --- InstantUnitSelect.pas 4 Sep 2005 23:15:54 -0000 1.8 *************** *** 31,35 **** unit InstantUnitSelect; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantUnitSelect; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantDualList.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantDualList.pas,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** InstantDualList.pas 24 Jul 2005 16:34:58 -0000 1.6 --- InstantDualList.pas 4 Sep 2005 23:15:54 -0000 1.7 *************** *** 31,35 **** unit InstantDualList; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantDualList; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantModelExpert.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantModelExpert.pas,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** InstantModelExpert.pas 24 Jul 2005 16:34:58 -0000 1.9 --- InstantModelExpert.pas 4 Sep 2005 23:15:54 -0000 1.10 *************** *** 31,35 **** unit InstantModelExpert; ! {$I ../../InstantDefines.inc} {$IFDEF D7+} --- 31,39 ---- unit InstantModelExpert; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} {$IFDEF D7+} Index: InstantClassEditor.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantClassEditor.pas,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** InstantClassEditor.pas 24 Jul 2005 16:34:57 -0000 1.10 --- InstantClassEditor.pas 4 Sep 2005 23:15:54 -0000 1.11 *************** *** 31,35 **** unit InstantClassEditor; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantClassEditor; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface |
Update of /cvsroot/instantobjects/Source/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25205/Core Modified Files: InstantAccessors.pas InstantClasses.pas InstantCode.pas InstantCommand.pas InstantConnectionManager.pas InstantConnectionManagerFormUnit.pas InstantConsts.pas InstantCustomDBEvolverFormUnit.pas InstantDBBuild.pas InstantDBBuilderFormUnit.pas InstantDBEvolution.pas InstantDBEvolverFormUnit.pas InstantDesignHook.pas InstantExplorer.pas InstantImageUtils.pas InstantPersistence.pas InstantPresentation.pas InstantPump.pas InstantRtti.pas InstantTextFiler.pas InstantUtils.pas Log Message: Add conditional compiler directives to include 'InstantDefines.inc' with appropriate '\' or '/' characters in relative paths for Windows or Linux. Index: InstantPresentation.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantPresentation.pas,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** InstantPresentation.pas 24 Jul 2005 16:34:56 -0000 1.20 --- InstantPresentation.pas 4 Sep 2005 23:15:54 -0000 1.21 *************** *** 33,37 **** interface ! {$I ../../InstantDefines.inc} uses --- 33,41 ---- interface ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} uses Index: InstantPump.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantPump.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** InstantPump.pas 24 Jul 2005 16:34:56 -0000 1.5 --- InstantPump.pas 4 Sep 2005 23:15:54 -0000 1.6 *************** *** 30,34 **** unit InstantPump; ! {$I ../../InstantDefines.inc} interface --- 30,38 ---- unit InstantPump; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantConnectionManager.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantConnectionManager.pas,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** InstantConnectionManager.pas 24 Jul 2005 16:34:55 -0000 1.18 --- InstantConnectionManager.pas 4 Sep 2005 23:15:54 -0000 1.19 *************** *** 31,35 **** unit InstantConnectionManager; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantConnectionManager; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantDBEvolution.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantDBEvolution.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** InstantDBEvolution.pas 24 Jul 2005 16:34:55 -0000 1.5 --- InstantDBEvolution.pas 4 Sep 2005 23:15:54 -0000 1.6 *************** *** 30,34 **** unit InstantDBEvolution; ! {$I ../../InstantDefines.inc} interface --- 30,38 ---- unit InstantDBEvolution; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantCustomDBEvolverFormUnit.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantCustomDBEvolverFormUnit.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** InstantCustomDBEvolverFormUnit.pas 24 Jul 2005 16:34:55 -0000 1.3 --- InstantCustomDBEvolverFormUnit.pas 4 Sep 2005 23:15:54 -0000 1.4 *************** *** 30,34 **** unit InstantCustomDBEvolverFormUnit; ! {$I ../../InstantDefines.inc} interface --- 30,38 ---- unit InstantCustomDBEvolverFormUnit; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantRtti.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantRtti.pas,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** InstantRtti.pas 24 Jul 2005 16:34:56 -0000 1.6 --- InstantRtti.pas 4 Sep 2005 23:15:54 -0000 1.7 *************** *** 31,35 **** unit InstantRtti; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantRtti; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantCommand.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantCommand.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** InstantCommand.pas 24 Jul 2005 16:34:55 -0000 1.3 --- InstantCommand.pas 4 Sep 2005 23:15:54 -0000 1.4 *************** *** 31,35 **** unit InstantCommand; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantCommand; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantAccessors.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantAccessors.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** InstantAccessors.pas 24 Jul 2005 16:34:55 -0000 1.2 --- InstantAccessors.pas 4 Sep 2005 23:15:54 -0000 1.3 *************** *** 31,35 **** unit InstantAccessors; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantAccessors; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantImageUtils.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantImageUtils.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** InstantImageUtils.pas 24 Jul 2005 16:34:55 -0000 1.5 --- InstantImageUtils.pas 4 Sep 2005 23:15:54 -0000 1.6 *************** *** 30,34 **** interface ! {$I ../../InstantDefines.inc} uses --- 30,38 ---- interface ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} uses Index: InstantDesignHook.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantDesignHook.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** InstantDesignHook.pas 24 Jul 2005 16:34:55 -0000 1.2 --- InstantDesignHook.pas 4 Sep 2005 23:15:54 -0000 1.3 *************** *** 31,35 **** unit InstantDesignHook; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantDesignHook; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantConsts.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantConsts.pas,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** InstantConsts.pas 26 Aug 2005 07:01:23 -0000 1.16 --- InstantConsts.pas 4 Sep 2005 23:15:54 -0000 1.17 *************** *** 31,35 **** unit InstantConsts; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantConsts; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantCode.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantCode.pas,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** InstantCode.pas 24 Jul 2005 16:34:55 -0000 1.16 --- InstantCode.pas 4 Sep 2005 23:15:54 -0000 1.17 *************** *** 32,36 **** unit InstantCode; ! {$I ../../InstantDefines.inc} interface --- 32,40 ---- unit InstantCode; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantExplorer.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantExplorer.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** InstantExplorer.pas 24 Jul 2005 16:34:55 -0000 1.3 --- InstantExplorer.pas 4 Sep 2005 23:15:54 -0000 1.4 *************** *** 31,35 **** unit InstantExplorer; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantExplorer; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantUtils.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantUtils.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** InstantUtils.pas 24 Jul 2005 16:34:56 -0000 1.5 --- InstantUtils.pas 4 Sep 2005 23:15:54 -0000 1.6 *************** *** 31,35 **** unit InstantUtils; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantUtils; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantDBEvolverFormUnit.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantDBEvolverFormUnit.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** InstantDBEvolverFormUnit.pas 24 Jul 2005 16:34:55 -0000 1.3 --- InstantDBEvolverFormUnit.pas 4 Sep 2005 23:15:54 -0000 1.4 *************** *** 30,34 **** unit InstantDBEvolverFormUnit; ! {$I ../../InstantDefines.inc} interface --- 30,38 ---- unit InstantDBEvolverFormUnit; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantDBBuild.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantDBBuild.pas,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** InstantDBBuild.pas 2 Aug 2005 04:50:56 -0000 1.7 --- InstantDBBuild.pas 4 Sep 2005 23:15:54 -0000 1.8 *************** *** 31,35 **** unit InstantDBBuild; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantDBBuild; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantTextFiler.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantTextFiler.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** InstantTextFiler.pas 24 Jul 2005 16:34:56 -0000 1.4 --- InstantTextFiler.pas 4 Sep 2005 23:15:54 -0000 1.5 *************** *** 31,35 **** unit InstantTextFiler; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantTextFiler; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantPersistence.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantPersistence.pas,v retrieving revision 1.53 retrieving revision 1.54 diff -C2 -d -r1.53 -r1.54 *** InstantPersistence.pas 26 Aug 2005 07:08:35 -0000 1.53 --- InstantPersistence.pas 4 Sep 2005 23:15:54 -0000 1.54 *************** *** 32,36 **** unit InstantPersistence; ! {$I ../../InstantDefines.inc} interface --- 32,40 ---- unit InstantPersistence; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantDBBuilderFormUnit.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantDBBuilderFormUnit.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** InstantDBBuilderFormUnit.pas 24 Jul 2005 16:34:55 -0000 1.3 --- InstantDBBuilderFormUnit.pas 4 Sep 2005 23:15:54 -0000 1.4 *************** *** 30,34 **** unit InstantDBBuilderFormUnit; ! {$I ../../InstantDefines.inc} interface --- 30,38 ---- unit InstantDBBuilderFormUnit; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantClasses.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantClasses.pas,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** InstantClasses.pas 24 Jul 2005 16:34:55 -0000 1.8 --- InstantClasses.pas 4 Sep 2005 23:15:54 -0000 1.9 *************** *** 31,35 **** unit InstantClasses; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantClasses; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantConnectionManagerFormUnit.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantConnectionManagerFormUnit.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** InstantConnectionManagerFormUnit.pas 24 Jul 2005 16:34:55 -0000 1.2 --- InstantConnectionManagerFormUnit.pas 4 Sep 2005 23:15:54 -0000 1.3 *************** *** 31,35 **** unit InstantConnectionManagerFormUnit; ! {$I ../../InstantDefines.inc} interface --- 31,39 ---- unit InstantConnectionManagerFormUnit; ! {$IFDEF LINUX} ! {$I '../InstantDefines.inc'} ! {$ELSE} ! {$I '..\InstantDefines.inc'} ! {$ENDIF} interface |
From: Steven M. <sr...@us...> - 2005-09-04 23:16:03
|
Update of /cvsroot/instantobjects/Source/Catalogs/BDE/D6 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25205/Catalogs/BDE/D6 Modified Files: IOBDECatalog.dpk Log Message: Add conditional compiler directives to include 'InstantDefines.inc' with appropriate '\' or '/' characters in relative paths for Windows or Linux. Index: IOBDECatalog.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Catalogs/BDE/D6/IOBDECatalog.dpk,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IOBDECatalog.dpk 26 Aug 2005 07:15:54 -0000 1.1 --- IOBDECatalog.dpk 4 Sep 2005 23:15:54 -0000 1.2 *************** *** 1,5 **** package IOBDECatalog; ! {$I ../../../InstantVersion.inc} {$ALIGN 8} --- 1,5 ---- package IOBDECatalog; ! {$I '..\..\..\InstantVersion.inc'} {$ALIGN 8} |
From: Steven M. <sr...@us...> - 2005-09-04 23:16:03
|
Update of /cvsroot/instantobjects/Source/Catalogs/NexusDB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25205/Catalogs/NexusDB Modified Files: InstantNexusDBCatalog.pas Log Message: Add conditional compiler directives to include 'InstantDefines.inc' with appropriate '\' or '/' characters in relative paths for Windows or Linux. Index: InstantNexusDBCatalog.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Catalogs/NexusDB/InstantNexusDBCatalog.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** InstantNexusDBCatalog.pas 26 Aug 2005 06:59:47 -0000 1.2 --- InstantNexusDBCatalog.pas 4 Sep 2005 23:15:54 -0000 1.3 *************** *** 30,35 **** unit InstantNexusDBCatalog; ! {$I ../../InstantDefines.inc} {$I ../../Brokers/NexusDB/InstantNexusDBDefines.inc} interface --- 30,40 ---- unit InstantNexusDBCatalog; ! {$IFDEF LINUX} ! {$I '../../InstantDefines.inc'} {$I ../../Brokers/NexusDB/InstantNexusDBDefines.inc} + {$ELSE} + {$I '..\..\InstantDefines.inc'} + {$I ..\..\Brokers/NexusDB/InstantNexusDBDefines.inc} + {$ENDIF} interface |
From: Steven M. <sr...@us...> - 2005-09-04 23:16:03
|
Update of /cvsroot/instantobjects/Source/Catalogs/IBFb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25205/Catalogs/IBFb Modified Files: InstantIBFbCatalog.pas Log Message: Add conditional compiler directives to include 'InstantDefines.inc' with appropriate '\' or '/' characters in relative paths for Windows or Linux. Index: InstantIBFbCatalog.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Catalogs/IBFb/InstantIBFbCatalog.pas,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** InstantIBFbCatalog.pas 30 Jul 2005 06:30:11 -0000 1.6 --- InstantIBFbCatalog.pas 4 Sep 2005 23:15:54 -0000 1.7 *************** *** 30,34 **** unit InstantIBFbCatalog; ! {$I ../../InstantDefines.inc} interface --- 30,38 ---- unit InstantIBFbCatalog; ! {$IFDEF LINUX} ! {$I '../../InstantDefines.inc'} ! {$ELSE} ! {$I '..\..\InstantDefines.inc'} ! {$ENDIF} interface |
From: Steven M. <sr...@us...> - 2005-09-04 23:16:03
|
Update of /cvsroot/instantobjects/Source/Brokers/NexusDb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25205/Brokers/NexusDb Modified Files: InstantNexusDB.pas InstantNexusDBConnectionDefEdit.pas InstantNexusDBConsts.pas InstantNexusDBEmbedded.pas InstantNexusDBEmbeddedConnectionDefEdit.pas InstantNexusDBReg.pas Log Message: Add conditional compiler directives to include 'InstantDefines.inc' with appropriate '\' or '/' characters in relative paths for Windows or Linux. Index: InstantNexusDBEmbedded.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/NexusDb/InstantNexusDBEmbedded.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InstantNexusDBEmbedded.pas 11 Aug 2005 00:34:51 -0000 1.1 --- InstantNexusDBEmbedded.pas 4 Sep 2005 23:15:53 -0000 1.2 *************** *** 31,35 **** unit InstantNexusDBEmbedded; ! {$I ../../InstantDefines.inc} {$I InstantNexusDBDefines.inc} --- 31,39 ---- unit InstantNexusDBEmbedded; ! {$IFDEF LINUX} ! {$I '../../InstantDefines.inc'} ! {$ELSE} ! {$I '..\..\InstantDefines.inc'} ! {$ENDIF} {$I InstantNexusDBDefines.inc} Index: InstantNexusDB.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/NexusDb/InstantNexusDB.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InstantNexusDB.pas 11 Aug 2005 00:34:51 -0000 1.1 --- InstantNexusDB.pas 4 Sep 2005 23:15:53 -0000 1.2 *************** *** 31,35 **** unit InstantNexusDB; ! {$I ../../InstantDefines.inc} {$I InstantNexusDBDefines.inc} --- 31,39 ---- unit InstantNexusDB; ! {$IFDEF LINUX} ! {$I '../../InstantDefines.inc'} ! {$ELSE} ! {$I '..\..\InstantDefines.inc'} ! {$ENDIF} {$I InstantNexusDBDefines.inc} Index: InstantNexusDBReg.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/NexusDb/InstantNexusDBReg.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InstantNexusDBReg.pas 11 Aug 2005 00:34:51 -0000 1.1 --- InstantNexusDBReg.pas 4 Sep 2005 23:15:53 -0000 1.2 *************** *** 31,35 **** unit InstantNexusDBReg; ! {$I ../../InstantDefines.inc} {$I InstantNexusDBDefines.inc} --- 31,39 ---- unit InstantNexusDBReg; ! {$IFDEF LINUX} ! {$I '../../InstantDefines.inc'} ! {$ELSE} ! {$I '..\..\InstantDefines.inc'} ! {$ENDIF} {$I InstantNexusDBDefines.inc} Index: InstantNexusDBEmbeddedConnectionDefEdit.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/NexusDb/InstantNexusDBEmbeddedConnectionDefEdit.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InstantNexusDBEmbeddedConnectionDefEdit.pas 11 Aug 2005 00:34:51 -0000 1.1 --- InstantNexusDBEmbeddedConnectionDefEdit.pas 4 Sep 2005 23:15:53 -0000 1.2 *************** *** 31,35 **** unit InstantNexusDBEmbeddedConnectionDefEdit; ! {$I ../../InstantDefines.inc} {$I InstantNexusDBDefines.inc} --- 31,39 ---- unit InstantNexusDBEmbeddedConnectionDefEdit; ! {$IFDEF LINUX} ! {$I '../../InstantDefines.inc'} ! {$ELSE} ! {$I '..\..\InstantDefines.inc'} ! {$ENDIF} {$I InstantNexusDBDefines.inc} Index: InstantNexusDBConnectionDefEdit.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/NexusDb/InstantNexusDBConnectionDefEdit.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InstantNexusDBConnectionDefEdit.pas 11 Aug 2005 00:34:51 -0000 1.1 --- InstantNexusDBConnectionDefEdit.pas 4 Sep 2005 23:15:53 -0000 1.2 *************** *** 31,35 **** unit InstantNexusDBConnectionDefEdit; ! {$I ../../InstantDefines.inc} {$I InstantNexusDBDefines.inc} --- 31,39 ---- unit InstantNexusDBConnectionDefEdit; ! {$IFDEF LINUX} ! {$I '../../InstantDefines.inc'} ! {$ELSE} ! {$I '..\..\InstantDefines.inc'} ! {$ENDIF} {$I InstantNexusDBDefines.inc} Index: InstantNexusDBConsts.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/NexusDb/InstantNexusDBConsts.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InstantNexusDBConsts.pas 11 Aug 2005 00:34:51 -0000 1.1 --- InstantNexusDBConsts.pas 4 Sep 2005 23:15:53 -0000 1.2 *************** *** 31,35 **** unit InstantNexusDBConsts; ! {$I ../../InstantDefines.inc} {$I InstantNexusDBDefines.inc} --- 31,39 ---- unit InstantNexusDBConsts; ! {$IFDEF LINUX} ! {$I '../../InstantDefines.inc'} ! {$ELSE} ! {$I '..\..\InstantDefines.inc'} ! {$ENDIF} {$I InstantNexusDBDefines.inc} |
From: Steven M. <sr...@us...> - 2005-09-04 23:16:03
|
Update of /cvsroot/instantobjects/Source/Catalogs/BDE In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25205/Catalogs/BDE Modified Files: InstantBDECatalog.pas Log Message: Add conditional compiler directives to include 'InstantDefines.inc' with appropriate '\' or '/' characters in relative paths for Windows or Linux. Index: InstantBDECatalog.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Catalogs/BDE/InstantBDECatalog.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InstantBDECatalog.pas 26 Aug 2005 07:15:54 -0000 1.1 --- InstantBDECatalog.pas 4 Sep 2005 23:15:53 -0000 1.2 *************** *** 30,34 **** unit InstantBDECatalog; ! {$I ../../InstantDefines.inc} interface --- 30,38 ---- unit InstantBDECatalog; ! {$IFDEF LINUX} ! {$I '../../InstantDefines.inc'} ! {$ELSE} ! {$I '..\..\InstantDefines.inc'} ! {$ENDIF} interface |
From: Steven M. <sr...@us...> - 2005-09-04 23:16:02
|
Update of /cvsroot/instantobjects/Source/Catalogs/BDE/D5 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25205/Catalogs/BDE/D5 Modified Files: IOBDECatalog_D5.dpk Log Message: Add conditional compiler directives to include 'InstantDefines.inc' with appropriate '\' or '/' characters in relative paths for Windows or Linux. Index: IOBDECatalog_D5.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Catalogs/BDE/D5/IOBDECatalog_D5.dpk,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IOBDECatalog_D5.dpk 26 Aug 2005 07:15:54 -0000 1.1 --- IOBDECatalog_D5.dpk 4 Sep 2005 23:15:53 -0000 1.2 *************** *** 1,5 **** package IOBDECatalog_D5; ! {$I ../../../InstantVersion.inc} {$ALIGN ON} --- 1,5 ---- package IOBDECatalog_D5; ! {$I '..\..\..\InstantVersion.inc'} {$ALIGN ON} |
From: Steven M. <sr...@us...> - 2005-09-04 23:16:01
|
Update of /cvsroot/instantobjects/Source/Brokers/XML In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25205/Brokers/XML Modified Files: InstantXML.pas InstantXMLConnectionDefEdit.pas InstantXMLReg.pas Log Message: Add conditional compiler directives to include 'InstantDefines.inc' with appropriate '\' or '/' characters in relative paths for Windows or Linux. Index: InstantXML.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/XML/InstantXML.pas,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** InstantXML.pas 24 Jul 2005 16:34:52 -0000 1.7 --- InstantXML.pas 4 Sep 2005 23:15:53 -0000 1.8 *************** *** 28,32 **** unit InstantXML; ! {$I ../../InstantDefines.inc} interface --- 28,36 ---- unit InstantXML; ! {$IFDEF LINUX} ! {$I '../../InstantDefines.inc'} ! {$ELSE} ! {$I '..\..\InstantDefines.inc'} ! {$ENDIF} interface Index: InstantXMLConnectionDefEdit.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/XML/InstantXMLConnectionDefEdit.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** InstantXMLConnectionDefEdit.pas 24 Jul 2005 16:34:52 -0000 1.5 --- InstantXMLConnectionDefEdit.pas 4 Sep 2005 23:15:53 -0000 1.6 *************** *** 28,32 **** --- 28,36 ---- unit InstantXMLConnectionDefEdit; + {$IFDEF LINUX} {$I '../../InstantDefines.inc'} + {$ELSE} + {$I '..\..\InstantDefines.inc'} + {$ENDIF} {$IFDEF D6+} Index: InstantXMLReg.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/XML/InstantXMLReg.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** InstantXMLReg.pas 24 Jul 2005 16:34:52 -0000 1.2 --- InstantXMLReg.pas 4 Sep 2005 23:15:53 -0000 1.3 *************** *** 28,32 **** --- 28,36 ---- unit InstantXMLReg; + {$IFDEF LINUX} {$I '../../InstantDefines.inc'} + {$ELSE} + {$I '..\..\InstantDefines.inc'} + {$ENDIF} interface |
From: Steven M. <sr...@us...> - 2005-09-04 23:16:01
|
Update of /cvsroot/instantobjects/Source/Brokers/IBX In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25205/Brokers/IBX Modified Files: InstantIBX.pas InstantIBXConnectionDefEdit.pas Log Message: Add conditional compiler directives to include 'InstantDefines.inc' with appropriate '\' or '/' characters in relative paths for Windows or Linux. Index: InstantIBX.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/IBX/InstantIBX.pas,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** InstantIBX.pas 24 Jul 2005 16:34:50 -0000 1.12 --- InstantIBX.pas 4 Sep 2005 23:15:53 -0000 1.13 *************** *** 31,35 **** --- 31,39 ---- unit InstantIBX; + {$IFDEF LINUX} {$I '../../InstantDefines.inc'} + {$ELSE} + {$I '..\..\InstantDefines.inc'} + {$ENDIF} interface Index: InstantIBXConnectionDefEdit.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/IBX/InstantIBXConnectionDefEdit.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** InstantIBXConnectionDefEdit.pas 24 Jul 2005 16:34:50 -0000 1.5 --- InstantIBXConnectionDefEdit.pas 4 Sep 2005 23:15:53 -0000 1.6 *************** *** 31,35 **** --- 31,39 ---- unit InstantIBXConnectionDefEdit; + {$IFDEF LINUX} {$I '../../InstantDefines.inc'} + {$ELSE} + {$I '..\..\InstantDefines.inc'} + {$ENDIF} interface |
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+} |
From: Steven M. <sr...@us...> - 2005-09-03 08:03:54
|
Update of /cvsroot/instantobjects/Source/Brokers/DBISAM/D6 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9092/Brokers/DBISAM/D6 Modified Files: DclDBISAM.dpk IODBISAM.dpk Log Message: Changed relative paths to use '\' in Windows dpk files. Index: IODBISAM.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/DBISAM/D6/IODBISAM.dpk,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IODBISAM.dpk 6 Aug 2004 21:23:05 -0000 1.1 --- IODBISAM.dpk 3 Sep 2005 08:03:10 -0000 1.2 *************** *** 1,5 **** package IODBISAM; ! {$R *.res} {$ALIGN 8} {$ASSERTIONS ON} --- 1,6 ---- package IODBISAM; ! {$I '..\..\..\InstantVersion.inc'} ! {$ALIGN 8} {$ASSERTIONS ON} Index: DclDBISAM.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/DBISAM/D6/DclDBISAM.dpk,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DclDBISAM.dpk 6 Aug 2004 21:23:05 -0000 1.1 --- DclDBISAM.dpk 3 Sep 2005 08:03:10 -0000 1.2 *************** *** 1,5 **** package DclDBISAM; ! {$R *.res} {$R '..\InstantDBISAM.dcr'} {$ALIGN 8} --- 1,6 ---- package DclDBISAM; ! {$I '..\..\..\InstantVersion.inc'} ! {$R '..\InstantDBISAM.dcr'} {$ALIGN 8} |
From: Steven M. <sr...@us...> - 2005-09-03 08:03:52
|
Update of /cvsroot/instantobjects/Source/Brokers/IBX/D7 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9092/Brokers/IBX/D7 Modified Files: DclIOIBX.dpk IOIBX.dpk Log Message: Changed relative paths to use '\' in Windows dpk files. Index: DclIOIBX.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/IBX/D7/DclIOIBX.dpk,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DclIOIBX.dpk 30 Jul 2005 06:23:07 -0000 1.4 --- DclIOIBX.dpk 3 Sep 2005 08:03:11 -0000 1.5 *************** *** 1,7 **** package DclIOIBX; ! {$I '../../../InstantVersion.inc'} ! {$R '../InstantIBX.dcr'} {$ALIGN 8} {$ASSERTIONS ON} --- 1,7 ---- package DclIOIBX; ! {$I '..\..\..\InstantVersion.inc'} ! {$R '..\InstantIBX.dcr'} {$ALIGN 8} {$ASSERTIONS ON} Index: IOIBX.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/IBX/D7/IOIBX.dpk,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** IOIBX.dpk 30 Jul 2005 06:23:07 -0000 1.4 --- IOIBX.dpk 3 Sep 2005 08:03:11 -0000 1.5 *************** *** 1,5 **** package IOIBX; ! {$I '../../../InstantVersion.inc'} {$ALIGN 8} --- 1,5 ---- package IOIBX; ! {$I '..\..\..\InstantVersion.inc'} {$ALIGN 8} |
From: Steven M. <sr...@us...> - 2005-09-03 08:03:52
|
Update of /cvsroot/instantobjects/Source/Brokers/IBX/D5 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9092/Brokers/IBX/D5 Modified Files: DclIOIBX_D5.dpk Ioibx_D5.dpk Log Message: Changed relative paths to use '\' in Windows dpk files. Index: DclIOIBX_D5.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/IBX/D5/DclIOIBX_D5.dpk,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DclIOIBX_D5.dpk 2 Aug 2005 22:24:45 -0000 1.3 --- DclIOIBX_D5.dpk 3 Sep 2005 08:03:11 -0000 1.4 *************** *** 1,5 **** package DclIOIBX_D5; ! {$I '../../../InstantVersion.inc'} {$R '..\InstantIBX.dcr'} --- 1,5 ---- package DclIOIBX_D5; ! {$I '..\..\..\InstantVersion.inc'} {$R '..\InstantIBX.dcr'} Index: Ioibx_D5.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/IBX/D5/Ioibx_D5.dpk,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Ioibx_D5.dpk 2 Aug 2005 22:24:45 -0000 1.3 --- Ioibx_D5.dpk 3 Sep 2005 08:03:11 -0000 1.4 *************** *** 1,5 **** package Ioibx_D5; ! {$I '../../../InstantVersion.inc'} {$ALIGN ON} --- 1,5 ---- package Ioibx_D5; ! {$I '..\..\..\InstantVersion.inc'} {$ALIGN ON} |
From: Steven M. <sr...@us...> - 2005-09-03 08:03:52
|
Update of /cvsroot/instantobjects/Source/Brokers/BDE/D2005 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9092/Brokers/BDE/D2005 Modified Files: DclIOBDE.dpk IOBDE.dpk Log Message: Changed relative paths to use '\' in Windows dpk files. Index: DclIOBDE.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/BDE/D2005/DclIOBDE.dpk,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DclIOBDE.dpk 30 Jul 2005 06:18:28 -0000 1.2 --- DclIOBDE.dpk 3 Sep 2005 08:03:10 -0000 1.3 *************** *** 1,5 **** package DclIOBDE; ! {$I '../../../InstantVersion.inc'} {$R '..\InstantBDE.dcr'} --- 1,5 ---- package DclIOBDE; ! {$I '..\..\..\InstantVersion.inc'} {$R '..\InstantBDE.dcr'} Index: IOBDE.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/BDE/D2005/IOBDE.dpk,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IOBDE.dpk 26 Aug 2005 07:15:54 -0000 1.3 --- IOBDE.dpk 3 Sep 2005 08:03:10 -0000 1.4 *************** *** 1,5 **** package IOBDE; ! {$I '../../../InstantVersion.inc'} {$ALIGN 8} --- 1,5 ---- package IOBDE; ! {$I '..\..\..\InstantVersion.inc'} {$ALIGN 8} |
From: Steven M. <sr...@us...> - 2005-09-03 08:03:52
|
Update of /cvsroot/instantobjects/Source/Brokers/FlashFiler/D5 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9092/Brokers/FlashFiler/D5 Modified Files: DclIOff_D5.dpk ioff_D5.dpk Log Message: Changed relative paths to use '\' in Windows dpk files. Index: ioff_D5.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/FlashFiler/D5/ioff_D5.dpk,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ioff_D5.dpk 2 Aug 2005 22:17:54 -0000 1.3 --- ioff_D5.dpk 3 Sep 2005 08:03:11 -0000 1.4 *************** *** 1,5 **** package ioff_D5; ! {$I '../../../InstantVersion.inc'} {$R '..\InstantFlashFiler.dcr'} --- 1,5 ---- package ioff_D5; ! {$I '..\..\..\InstantVersion.inc'} {$R '..\InstantFlashFiler.dcr'} Index: DclIOff_D5.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/FlashFiler/D5/DclIOff_D5.dpk,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DclIOff_D5.dpk 2 Aug 2005 22:17:54 -0000 1.4 --- DclIOff_D5.dpk 3 Sep 2005 08:03:11 -0000 1.5 *************** *** 1,5 **** package DclIOff_D5; ! {$I '../../../InstantVersion.inc'} {$R 'InstantFlashFiler.dcr'} --- 1,5 ---- package DclIOff_D5; ! {$I '..\..\..\InstantVersion.inc'} {$R 'InstantFlashFiler.dcr'} |
From: Steven M. <sr...@us...> - 2005-09-03 08:03:50
|
Update of /cvsroot/instantobjects/Source/Brokers/DBX/D7 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9092/Brokers/DBX/D7 Modified Files: DclIODBX.dpk IODBX.dpk Log Message: Changed relative paths to use '\' in Windows dpk files. Index: DclIODBX.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/DBX/D7/DclIODBX.dpk,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DclIODBX.dpk 24 Jul 2005 16:34:49 -0000 1.3 --- DclIODBX.dpk 3 Sep 2005 08:03:10 -0000 1.4 *************** *** 1,7 **** package DclIODBX; ! {$I '../../InstantVersion.inc'} ! {$R '../InstantDBX.dcr'} {$ALIGN 8} {$ASSERTIONS ON} --- 1,7 ---- package DclIODBX; ! {$I '..\..\InstantVersion.inc'} ! {$R '..\InstantDBX.dcr'} {$ALIGN 8} {$ASSERTIONS ON} Index: IODBX.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/DBX/D7/IODBX.dpk,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** IODBX.dpk 24 Jul 2005 16:34:49 -0000 1.4 --- IODBX.dpk 3 Sep 2005 08:03:10 -0000 1.5 *************** *** 1,5 **** package IODBX; ! {$I '../../InstantVersion.inc'} {$ALIGN 8} --- 1,5 ---- package IODBX; ! {$I '..\..\InstantVersion.inc'} {$ALIGN 8} |
From: Steven M. <sr...@us...> - 2005-09-03 08:03:50
|
Update of /cvsroot/instantobjects/Source/Brokers/IBX/D6 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9092/Brokers/IBX/D6 Modified Files: DclIOIBX.dpk IOIBX.dpk Log Message: Changed relative paths to use '\' in Windows dpk files. Index: DclIOIBX.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/IBX/D6/DclIOIBX.dpk,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DclIOIBX.dpk 24 Jul 2005 16:34:49 -0000 1.2 --- DclIOIBX.dpk 3 Sep 2005 08:03:11 -0000 1.3 *************** *** 1,7 **** package DclIOIBX; ! {$I '../../../InstantVersion.inc'} ! {$R '../InstantIBX.dcr'} {$ALIGN 8} {$ASSERTIONS ON} --- 1,7 ---- package DclIOIBX; ! {$I '..\..\..\InstantVersion.inc'} ! {$R '..\InstantIBX.dcr'} {$ALIGN 8} {$ASSERTIONS ON} Index: IOIBX.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/IBX/D6/IOIBX.dpk,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IOIBX.dpk 24 Jul 2005 16:34:50 -0000 1.3 --- IOIBX.dpk 3 Sep 2005 08:03:11 -0000 1.4 *************** *** 1,5 **** package IOIBX; ! {$I '../../../InstantVersion.inc'} {$ALIGN 8} --- 1,5 ---- package IOIBX; ! {$I '..\..\..\InstantVersion.inc'} {$ALIGN 8} |
From: Steven M. <sr...@us...> - 2005-09-03 08:03:50
|
Update of /cvsroot/instantobjects/Source/Brokers/DBX/D6 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9092/Brokers/DBX/D6 Modified Files: DclIODBX.dpk IODBX.dpk Log Message: Changed relative paths to use '\' in Windows dpk files. Index: DclIODBX.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/DBX/D6/DclIODBX.dpk,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DclIODBX.dpk 24 Jul 2005 16:34:49 -0000 1.2 --- DclIODBX.dpk 3 Sep 2005 08:03:10 -0000 1.3 *************** *** 1,7 **** package DclIODBX; ! {$I '../../../InstantVersion.inc'} ! {$R '../InstantDBX.dcr'} {$ALIGN 8} {$ASSERTIONS ON} --- 1,7 ---- package DclIODBX; ! {$I '..\..\..\InstantVersion.inc'} ! {$R '..\InstantDBX.dcr'} {$ALIGN 8} {$ASSERTIONS ON} Index: IODBX.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/DBX/D6/IODBX.dpk,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IODBX.dpk 24 Jul 2005 16:34:49 -0000 1.3 --- IODBX.dpk 3 Sep 2005 08:03:10 -0000 1.4 *************** *** 1,5 **** package IODBX; ! {$I '../../../InstantVersion.inc'} {$ALIGN 8} --- 1,5 ---- package IODBX; ! {$I '..\..\..\InstantVersion.inc'} {$ALIGN 8} |
From: Steven M. <sr...@us...> - 2005-09-03 08:03:50
|
Update of /cvsroot/instantobjects/Source/Brokers/ADO/D5 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9092/Brokers/ADO/D5 Modified Files: DclIOADO_D5.dpk IOADO_D5.dpk Log Message: Changed relative paths to use '\' in Windows dpk files. Index: DclIOADO_D5.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/ADO/D5/DclIOADO_D5.dpk,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DclIOADO_D5.dpk 7 Aug 2005 19:01:31 -0000 1.1 --- DclIOADO_D5.dpk 3 Sep 2005 08:03:10 -0000 1.2 *************** *** 1,5 **** package DclIOADO_D5; ! {$I '../../../InstantVersion.inc'} {$R '..\InstantADO.dcr'} --- 1,5 ---- package DclIOADO_D5; ! {$I '..\..\..\InstantVersion.inc'} {$R '..\InstantADO.dcr'} Index: IOADO_D5.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/ADO/D5/IOADO_D5.dpk,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IOADO_D5.dpk 7 Aug 2005 19:01:31 -0000 1.1 --- IOADO_D5.dpk 3 Sep 2005 08:03:10 -0000 1.2 *************** *** 1,5 **** package IOADO; ! {$I '../../../InstantVersion.inc'} {$ALIGN ON} --- 1,5 ---- package IOADO; ! {$I '..\..\..\InstantVersion.inc'} {$ALIGN ON} |
From: Steven M. <sr...@us...> - 2005-09-03 08:03:50
|
Update of /cvsroot/instantobjects/Source/Brokers/DBISAM/D7 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9092/Brokers/DBISAM/D7 Modified Files: DclDBISAM.dpk IODBISAM.dpk Log Message: Changed relative paths to use '\' in Windows dpk files. Index: IODBISAM.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/DBISAM/D7/IODBISAM.dpk,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IODBISAM.dpk 6 Aug 2004 21:24:04 -0000 1.1 --- IODBISAM.dpk 3 Sep 2005 08:03:10 -0000 1.2 *************** *** 1,5 **** package IODBISAM; ! {$R *.res} {$ALIGN 8} {$ASSERTIONS ON} --- 1,6 ---- package IODBISAM; ! {$I '..\..\..\InstantVersion.inc'} ! {$ALIGN 8} {$ASSERTIONS ON} Index: DclDBISAM.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/DBISAM/D7/DclDBISAM.dpk,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DclDBISAM.dpk 6 Aug 2004 21:24:04 -0000 1.1 --- DclDBISAM.dpk 3 Sep 2005 08:03:10 -0000 1.2 *************** *** 1,5 **** package DclDBISAM; ! {$R *.res} {$R '..\InstantDBISAM.dcr'} {$ALIGN 8} --- 1,6 ---- package DclDBISAM; ! {$I '..\..\..\InstantVersion.inc'} ! {$R '..\InstantDBISAM.dcr'} {$ALIGN 8} |
From: Steven M. <sr...@us...> - 2005-09-03 08:03:50
|
Update of /cvsroot/instantobjects/Source/Brokers/IBX/D2005 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9092/Brokers/IBX/D2005 Modified Files: DclIOIBX.dpk IOIBX.dpk Log Message: Changed relative paths to use '\' in Windows dpk files. Index: DclIOIBX.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/IBX/D2005/DclIOIBX.dpk,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DclIOIBX.dpk 30 Jul 2005 06:23:07 -0000 1.1 --- DclIOIBX.dpk 3 Sep 2005 08:03:11 -0000 1.2 *************** *** 1,7 **** package DclIOIBX; ! {$I '../../../InstantVersion.inc'} ! {$R '../InstantIBX.dcr'} {$ALIGN 8} {$ASSERTIONS ON} --- 1,7 ---- package DclIOIBX; ! {$I '..\..\..\InstantVersion.inc'} ! {$R '..\InstantIBX.dcr'} {$ALIGN 8} {$ASSERTIONS ON} Index: IOIBX.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/IBX/D2005/IOIBX.dpk,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IOIBX.dpk 30 Jul 2005 06:23:07 -0000 1.1 --- IOIBX.dpk 3 Sep 2005 08:03:11 -0000 1.2 *************** *** 1,5 **** package IOIBX; ! {$I '../../../InstantVersion.inc'} {$ALIGN 8} --- 1,5 ---- package IOIBX; ! {$I '..\..\..\InstantVersion.inc'} {$ALIGN 8} |
From: Steven M. <sr...@us...> - 2005-09-03 08:03:50
|
Update of /cvsroot/instantobjects/Source/Brokers/NexusDb/D2005 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9092/Brokers/NexusDb/D2005 Modified Files: DclIONexusDB.dpk IONexusDB.dpk Log Message: Changed relative paths to use '\' in Windows dpk files. Index: IONexusDB.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/NexusDb/D2005/IONexusDB.dpk,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IONexusDB.dpk 2 Sep 2005 01:06:12 -0000 1.2 --- IONexusDB.dpk 3 Sep 2005 08:03:11 -0000 1.3 *************** *** 1,5 **** package IONexusDB; ! {$I '../../../InstantVersion.inc'} {$ALIGN 8} --- 1,5 ---- package IONexusDB; ! {$I '..\..\..\InstantVersion.inc'} {$ALIGN 8} Index: DclIONexusDB.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/NexusDb/D2005/DclIONexusDB.dpk,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DclIONexusDB.dpk 11 Aug 2005 00:34:52 -0000 1.1 --- DclIONexusDB.dpk 3 Sep 2005 08:03:11 -0000 1.2 *************** *** 1,7 **** package DclIONexusDB; ! {$I '../../../InstantVersion.inc'} ! {$R '../InstantNexusDB.dcr'} {$ALIGN 8} {$ASSERTIONS ON} --- 1,7 ---- package DclIONexusDB; ! {$I '..\..\..\InstantVersion.inc'} ! {$R '..\InstantNexusDB.dcr'} {$ALIGN 8} {$ASSERTIONS ON} |
From: Steven M. <sr...@us...> - 2005-09-03 08:03:49
|
Update of /cvsroot/instantobjects/Source/Brokers/BDE/D6 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9092/Brokers/BDE/D6 Modified Files: DclIOBDE.dpk IOBDE.dpk Log Message: Changed relative paths to use '\' in Windows dpk files. Index: DclIOBDE.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/BDE/D6/DclIOBDE.dpk,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DclIOBDE.dpk 24 Jul 2005 16:34:48 -0000 1.2 --- DclIOBDE.dpk 3 Sep 2005 08:03:10 -0000 1.3 *************** *** 1,7 **** package DclIOBDE; ! {$I '../../../InstantVersion.inc'} ! {$R '../InstantBDE.dcr'} {$ALIGN 8} {$ASSERTIONS ON} --- 1,7 ---- package DclIOBDE; ! {$I '..\..\..\InstantVersion.inc'} ! {$R '..\InstantBDE.dcr'} {$ALIGN 8} {$ASSERTIONS ON} Index: IOBDE.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/BDE/D6/IOBDE.dpk,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IOBDE.dpk 26 Aug 2005 07:15:54 -0000 1.3 --- IOBDE.dpk 3 Sep 2005 08:03:10 -0000 1.4 *************** *** 1,5 **** package IOBDE; ! {$I '../../../InstantVersion.inc'} {$ALIGN 8} --- 1,5 ---- package IOBDE; ! {$I '..\..\..\InstantVersion.inc'} {$ALIGN 8} |