Ver Mensaje Individual
  #3  
Antiguo 22-12-2012
beginner01 beginner01 is offline
Miembro
NULL
 
Registrado: mar 2011
Ubicación: República Dominicana
Posts: 181
Reputación: 14
beginner01 Va por buen camino
Hola.

Ese error es un bug de las JEDI .te dejo la cita que copie y almacene en un archivo, pero que no recuerdo la fuente.

Cita:
On 2012-09-10 12:23:59, Jean-Fabien Connault wrote:

> It looks like Install.bat is throwing the following error with Delphi
> 2010...
>
> <...>\JVCL\jvcl\devtools\PackagesGenerator\GenerateDefines.pas(46)
> Fatal: F1026 File not found: 'System.Types.dcu' Failed to compile
> JVCL installer Press any key to continue . . .

I'm seeing the same error on a system with Delphi 2007 and XE installed
with the SourceForce release.

Fixing the error in the referenced unit fixed the problem though and
the installer works fine afterward.

I just replaced that Line 46 in GenerateDefines.pas with the following
block:


{$IFDEF HAS_UNITSCOPE}
System.Types,
{$ELSE HAS_UNITSCOPE}
Types,
{$ENDIF HAS_UNITSCOPE}


That should make it safe for all Delphi versions.

--
Pax,

Anthony Frazier
Victor Printing, Inc.

Re: ANN: JVCL 3.46 Released!
La parte en negrita la debes reemplzar en el archivo GenerateDefines.pas en la linea 46

Cita:
I just replaced that Line 46 in GenerateDefines.pas with the following
block:
La unidad se encuentra en jvcl\devtools\PackagesGenerator\GenerateDefines.pas
Responder Con Cita