Issues compiling 4.40.14

Discussion of open issues, suggestions and bugs regarding usage of dbExpress drivers for Oracle in Delphi and C++Builder
Post Reply
gb
Posts: 42
Joined: Wed 05 Mar 2008 12:32

Issues compiling 4.40.14

Post by gb » Mon 16 Feb 2009 14:49

When I run the make batch file, the following happens:

dbxoda440src\Source\Delphi11>"C:\Borland\BDS\5.0\bin\dcc32.exe" -LE. -K400000 -B -V- -VR- -$D
- -$Y- -$L- -$O+ -E dbexpoda40.dpr
CodeGear Delphi for Win32 compiler version 18.5
Copyright (c) 1983,2007 CodeGear
(...)
dbxoda440src(4.40.14)\Source\CRAccess.pas(30) Fatal: F1026 File not found: 'CRVio.dcu'
Press any key to continue . . .

On line 30 of CRAccess.pas we have
"SysUtils, Classes, MemData, MemUtils, CRParser, CRVio;"

but it turns out that "CRVio.pas" file was not included on the release.
Any help on sorting this?

gb

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Fri 20 Feb 2009 09:30

There is a mistake in CRAccess.pas.
Please edit CRAccess.pas in the following way to compile sources:
1. Remove CRVio from USES.
2. Comment the following lines:

Code: Select all

    FIOHandler: TCRIOHandler;
and

Code: Select all

    property IOHandler: TCRIOHandler read FIOHandler write FIOHandler;

Post Reply