IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Composants VCL Delphi Discussion :

Problème pour installer GLScene


Sujet :

Composants VCL Delphi

  1. #1
    Membre averti
    Homme Profil pro
    retraité
    Inscrit en
    Août 2014
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 72
    Localisation : France, Drôme (Rhône Alpes)

    Informations professionnelles :
    Activité : retraité

    Informations forums :
    Inscription : Août 2014
    Messages : 37
    Par défaut Problème pour installer GLScene
    Bonjour.
    J'ai réinstaller Windows XP et Delphi 6 (pas le choix).

    Pour finir et utiliser un programme de digitalisation de films Super 8, je doit réinstaller GLSCene --> GLAVIRecorder.
    J'ai tous les sources, à priori pas de problème. Mais ça plante au moment de l'installation/Compilation des composants avec le message suivant :

    Erreur : [Erreur fatale] GLScene.pas(1): Le programme ou l'unité 'GLScene.pas' s'utilise récursivement lui-même

    Après recherche j'ai ouvert le fichier Glscene.inc

    Je suppose que cela s'applique à des options de compilation selon l'EDI utilisé.


    Qu'elle est celle qui s'applique à DELPHI 6 ?


    Si quelqu'un peut m'aider merci.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
     
    based on Delphi Free Stuff Include File
    //                  by Brad Stowers: bstowers@pobox.com
    //                  Delphi Free Stuff: http://www.delphifreestuff.com/
    //
    // 08/03/06 - ur - added Delphi 2006 detection
    // 08/07/04 - LR - BCB5 and BCB6 detection
    // 30/08/02 - EG - Delphi 7 detection
    // 24/01/02 - EG - Linux/Kylix changes (Puthoon)
    // 28/12/01 - EG - Added GLS_Graphics32_SUPPORT
    // 27/07/01 - EG - Renamed and made GLScene-specific
    // 26/06/01 - EG - Added Delphi6 stuff
    //
     
    {$DEFINE GLSCENE}
     
    //
    // Additionnal support & dependencies
    //
     
    // Activate support for Alex Denissov's Graphics32 library (http://www.g32.org)
    {.$DEFINE GLS_Graphics32_SUPPORT}
     
    // De-Activate assembly routine
    {.$DEFINE GEOMETRY_NO_ASM}
     
    //
    // Platform Detection
    //
     
    {$IFDEF WIN32}
      {$DEFINE GLS_WIN32}
      {$DEFINE MSWINDOWS}
    {$ELSE}
      {$IFNDEF LINUX}
        {$DEFINE GLS_WIN16}
        {$DEFINE MSWINDOWS}
      {$ENDIF LINUX}
    {$ENDIF}
     
    {$IFDEF MSWINDOWS}
      {$DEFINE GLS_VCL}
    {$ELSE}
      {$DEFINE GLS_CLX}
    {$ENDIF}
     
    {$IFDEF LINUX}
      {$DEFINE GEOMETRY_NO_ASM}
    {$ENDIF}
     
    {$IFDEF FPC}
      {$DEFINE GEOMETRY_NO_ASM}
      {$TYPEINFO ON}
      {$INLINE ON}
    {$ENDIF}
     
    {$IFDEF CLR}
      {$DEFINE GEOMETRY_NO_ASM}
      {$UNSAFECODE ON}
    {$ENDIF}
     
    {$ifdef VER180}
      {$DEFINE GLS_COMPILER_10}
      {$DEFINE GLS_DELPHI_10}
      {$DEFINE GLS_DELPHI}       
    {$endif}
     
    {$ifdef VER170}
      {$DEFINE GLS_COMPILER_9}
      {$DEFINE GLS_DELPHI_9}
      {$DEFINE GLS_DELPHI}       
    {$endif}
     
    {$ifdef VER160}
      {$DEFINE GLS_COMPILER_8}
      {$DEFINE GLS_DELPHI_8}
      {$DEFINE GLS_DELPHI}       
    {$endif}
     
    {$ifdef VER150}
      {$DEFINE GLS_COMPILER_7}
      {$DEFINE GLS_DELPHI}
      {$DEFINE GLS_DELPHI_7}
      {$WARN UNSAFE_TYPE OFF}
      {$WARN UNSAFE_CODE OFF}
      {$WARN UNSAFE_CAST OFF}
    {$endif}
     
    {$ifdef VER140}
      {$DEFINE GLS_COMPILER_6}
      {$DEFINE GLS_DELPHI_6}
      {$IFDEF BCB}
        {$DEFINE GLS_CPPB}
        {$DEFINE GLS_CPPB_6}
      {$ELSE}      
        {$DEFINE GLS_DELPHI}       
      {$ENDIF}
    {$endif}
     
    {$IFDEF VER130}
      {$DEFINE GLS_COMPILER_5} 
      {$DEFINE GLS_DELPHI_5}
      {$IFDEF BCB}
        {$DEFINE GLS_CPPB}
        {$DEFINE GLS_CPPB_5}
      {$ELSE}      
        {$DEFINE GLS_DELPHI}       
      {$ENDIF}
    {$ENDIF}
     
    {$IFDEF VER125}
      {$DEFINE GLS_COMPILER_4}
      {$DEFINE GLS_CPPB}
      {$DEFINE GLS_CPPB_4}
    {$ENDIF}
     
    {$IFDEF VER120}
      {$DEFINE GLS_COMPILER_4}
      {$DEFINE GLS_DELPHI}
      {$DEFINE GLS_DELPHI_4}
    {$ENDIF}
     
    {$IFDEF VER110}
      {$DEFINE GLS_COMPILER_3}
      {$DEFINE GLS_CPPB}
      {$DEFINE GLS_CPPB_3}
    {$ENDIF}
     
    {$IFDEF VER100}
      {$DEFINE GLS_COMPILER_3}
      {$DEFINE GLS_DELPHI}
      {$DEFINE GLS_DELPHI_3}
    {$ENDIF}
     
    {$IFDEF VER93}
      {$DEFINE GLS_COMPILER_2}  { C++B v1 compiler is really v2 }
      {$DEFINE GLS_CPPB}
      {$DEFINE GLS_CPPB_1}
    {$ENDIF}
     
    {$IFDEF VER90}
      {$DEFINE GLS_COMPILER_2}
      {$DEFINE GLS_DELPHI}
      {$DEFINE GLS_DELPHI_2}
    {$ENDIF}
     
    {$IFDEF VER80}
      {$DEFINE GLS_COMPILER_1}
      {$DEFINE GLS_DELPHI}
      {$DEFINE GLS_DELPHI_1}
    {$ENDIF}
     
    {$IFNDEF GLS_CPPB}
      {$IFNDEF GLS_DELPHI}
        { Don't know what the hell it is.  Could be new version, or could be old BP. }
        {$DEFINE GLS_UNKNOWN_COMPILER}
      {$ENDIF}
    {$ENDIF}
     
    {$IFDEF GLS_COMPILER_1}
      {$DEFINE GLS_COMPILER_1_UP}
    {$ENDIF}
     
    {$IFDEF GLS_COMPILER_2}
      {$DEFINE GLS_COMPILER_1_UP}
      {$DEFINE GLS_COMPILER_2_UP}
    {$ENDIF}
     
    {$IFDEF GLS_COMPILER_3}
      {$DEFINE GLS_COMPILER_1_UP}
      {$DEFINE GLS_COMPILER_2_UP}
      {$DEFINE GLS_COMPILER_3_UP}
    {$ENDIF}
     
    {$IFDEF GLS_COMPILER_4}
      {$DEFINE GLS_COMPILER_1_UP}
      {$DEFINE GLS_COMPILER_2_UP}
      {$DEFINE GLS_COMPILER_3_UP}
      {$DEFINE GLS_COMPILER_4_UP}
    {$ENDIF}
     
    {$IFDEF GLS_COMPILER_5}
      {$DEFINE GLS_COMPILER_1_UP}
      {$DEFINE GLS_COMPILER_2_UP}
      {$DEFINE GLS_COMPILER_3_UP}
      {$DEFINE GLS_COMPILER_4_UP}
      {$DEFINE GLS_COMPILER_5_UP}
    {$ENDIF}
     
    {$IFDEF GLS_COMPILER_6}
      {$DEFINE GLS_COMPILER_1_UP}
      {$DEFINE GLS_COMPILER_2_UP}
      {$DEFINE GLS_COMPILER_3_UP}
      {$DEFINE GLS_COMPILER_4_UP}
      {$DEFINE GLS_COMPILER_5_UP}
      {$DEFINE GLS_COMPILER_6_UP}
    {$ENDIF}
     
    {$IFDEF GLS_COMPILER_7}
      {$DEFINE GLS_COMPILER_1_UP}
      {$DEFINE GLS_COMPILER_2_UP}
      {$DEFINE GLS_COMPILER_3_UP}
      {$DEFINE GLS_COMPILER_4_UP}
      {$DEFINE GLS_COMPILER_5_UP}
      {$DEFINE GLS_COMPILER_6_UP}
      {$DEFINE GLS_COMPILER_7_UP}
    {$ENDIF}
     
    {$IFDEF GLS_COMPILER_8}
      {$DEFINE GLS_COMPILER_1_UP}
      {$DEFINE GLS_COMPILER_2_UP}
      {$DEFINE GLS_COMPILER_3_UP}
      {$DEFINE GLS_COMPILER_4_UP}
      {$DEFINE GLS_COMPILER_5_UP}
      {$DEFINE GLS_COMPILER_6_UP}
      {$DEFINE GLS_COMPILER_7_UP}
      {$DEFINE GLS_COMPILER_8_UP}
    {$ENDIF}
     
    {$IFDEF GLS_COMPILER_9}
      {$DEFINE GLS_COMPILER_1_UP}
      {$DEFINE GLS_COMPILER_2_UP}
      {$DEFINE GLS_COMPILER_3_UP}
      {$DEFINE GLS_COMPILER_4_UP}
      {$DEFINE GLS_COMPILER_5_UP}
      {$DEFINE GLS_COMPILER_6_UP}
      {$DEFINE GLS_COMPILER_7_UP}
      {$DEFINE GLS_COMPILER_8_UP}
      {$DEFINE GLS_COMPILER_9_UP}
    {$ENDIF}
     
    {$IFDEF GLS_COMPILER_10}
      {$DEFINE GLS_COMPILER_1_UP}
      {$DEFINE GLS_COMPILER_2_UP}
      {$DEFINE GLS_COMPILER_3_UP}
      {$DEFINE GLS_COMPILER_4_UP}
      {$DEFINE GLS_COMPILER_5_UP}
      {$DEFINE GLS_COMPILER_6_UP}
      {$DEFINE GLS_COMPILER_7_UP}
      {$DEFINE GLS_COMPILER_8_UP}
      {$DEFINE GLS_COMPILER_9_UP}
      {$DEFINE GLS_COMPILER_10_UP}
    {$ENDIF}
     
    {$IFDEF GLS_DELPHI_2}
      {$DEFINE GLS_DELPHI_2_UP}
    {$ENDIF}
     
    {$IFDEF GLS_DELPHI_3}
      {$DEFINE GLS_DELPHI_2_UP}
      {$DEFINE GLS_DELPHI_3_UP}
    {$ENDIF}
     
    {$IFDEF GLS_DELPHI_4}
      {$DEFINE GLS_DELPHI_2_UP}
      {$DEFINE GLS_DELPHI_3_UP}
      {$DEFINE GLS_DELPHI_4_UP}
    {$ENDIF}
     
    {$IFDEF GLS_DELPHI_5}
      {$DEFINE GLS_DELPHI_2_UP}
      {$DEFINE GLS_DELPHI_3_UP}
      {$DEFINE GLS_DELPHI_4_UP}
      {$DEFINE GLS_DELPHI_5_UP}
    {$ENDIF}
     
    {$IFDEF GLS_DELPHI_6}
      {$DEFINE GLS_DELPHI_2_UP}
      {$DEFINE GLS_DELPHI_3_UP}
      {$DEFINE GLS_DELPHI_4_UP}
      {$DEFINE GLS_DELPHI_5_UP}
      {$DEFINE GLS_DELPHI_6_UP}
    {$ENDIF}
     
    {$IFDEF GLS_DELPHI_7}
      {$DEFINE GLS_DELPHI_2_UP}
      {$DEFINE GLS_DELPHI_3_UP}
      {$DEFINE GLS_DELPHI_4_UP}
      {$DEFINE GLS_DELPHI_5_UP}
      {$DEFINE GLS_DELPHI_6_UP}
      {$DEFINE GLS_DELPHI_7_UP}
    {$ENDIF}
     
    {$IFDEF GLS_DELPHI_8}
      {$DEFINE GLS_DELPHI_2_UP}
      {$DEFINE GLS_DELPHI_3_UP}
      {$DEFINE GLS_DELPHI_4_UP}
      {$DEFINE GLS_DELPHI_5_UP}
      {$DEFINE GLS_DELPHI_6_UP}
      {$DEFINE GLS_DELPHI_7_UP}
      {$DEFINE GLS_DELPHI_8_UP}
    {$ENDIF}
     
    {$IFDEF GLS_DELPHI_9}
      {$DEFINE GLS_DELPHI_2_UP}
      {$DEFINE GLS_DELPHI_3_UP}
      {$DEFINE GLS_DELPHI_4_UP}
      {$DEFINE GLS_DELPHI_5_UP}
      {$DEFINE GLS_DELPHI_6_UP}
      {$DEFINE GLS_DELPHI_7_UP}
      {$DEFINE GLS_DELPHI_8_UP}
      {$DEFINE GLS_DELPHI_9_UP}
    {$ENDIF}
     
    {$IFDEF GLS_DELPHI_10}
      {$DEFINE GLS_DELPHI_2_UP}
      {$DEFINE GLS_DELPHI_3_UP}
      {$DEFINE GLS_DELPHI_4_UP}
      {$DEFINE GLS_DELPHI_5_UP}
      {$DEFINE GLS_DELPHI_6_UP}
      {$DEFINE GLS_DELPHI_7_UP}
      {$DEFINE GLS_DELPHI_8_UP}
      {$DEFINE GLS_DELPHI_9_UP}
      {$DEFINE GLS_DELPHI_10_UP}
    {$ENDIF}
     
    {$IFDEF GLS_CPPB_3}
      {$DEFINE GLS_CPPB_3_UP}
    {$ENDIF}
     
    {$IFDEF GLS_CPPB_4}
      {$DEFINE GLS_CPPB_3_UP}
      {$DEFINE GLS_CPPB_4_UP}
    {$ENDIF}
     
    {$IFDEF GLS_CPPB_5}
      {$DEFINE GLS_CPPB_3_UP}
      {$DEFINE GLS_CPPB_4_UP}
      {$DEFINE GLS_CPPB_5_UP}  
    {$ENDIF}
     
    {$IFDEF GLS_CPPB_6}
      {$DEFINE GLS_CPPB_3_UP}
      {$DEFINE GLS_CPPB_4_UP}
      {$DEFINE GLS_CPPB_5_UP}  
      {$DEFINE GLS_CPPB_6_UP} 
    {$ENDIF}
     
    {$IFDEF GLS_COMPILER_3_UP}
      {$DEFINE GLS_NO_COM_CLEANUP}
    {$ENDIF}
     
    {$IFDEF GLS_CPPB_3_UP}
      // C++Builder requires this if you use Delphi components in run-time packages.
      {$ObjExportAll On}
    {$ENDIF}

  2. #2
    Expert éminent
    Avatar de ShaiLeTroll
    Homme Profil pro
    Développeur C++\Delphi
    Inscrit en
    Juillet 2006
    Messages
    14 231
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 45
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Développeur C++\Delphi
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juillet 2006
    Messages : 14 231
    Par défaut
    Delphi6 c'est VER140

    Mais qu'est-ce qui vous fait dire que c'est un problème de direction de compilation ?
    Aide via F1 - Utilisez l'I.A. - FAQ - Guide du développeur Delphi devant un problème - Pensez-y !
    Attention Troll Méchant !
    "Quand un homme a faim, mieux vaut lui apprendre à pêcher que de lui donner un poisson" Confucius
    Mieux vaut se taire et paraître idiot, Que l'ouvrir et de le confirmer !
    L'ignorance n'excuse pas la médiocrité ! Sachez-le : l'IA remplace la très grande majorité des développeurs, pas seulement les ignares ...

    L'expérience, c'est le nom que chacun donne à ses erreurs. (Oscar Wilde)
    Il faut avoir le courage de se tromper et d'apprendre de ses erreurs

  3. #3
    Membre averti
    Homme Profil pro
    retraité
    Inscrit en
    Août 2014
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 72
    Localisation : France, Drôme (Rhône Alpes)

    Informations professionnelles :
    Activité : retraité

    Informations forums :
    Inscription : Août 2014
    Messages : 37
    Par défaut Réponse
    Bonjour et merci d'une réponse si rapide.

    Non je ne pense pas qu'il s'agisse d'un problème de compilation. J'ai été curieux en lisant le fichier GLSCene.inc .
    Peut être que le problème vient de l'ordre d'installation de la multitude de fichiers .dpk . Quel est il ?

    Faut il utiliser le fichier GLScene.groupprog, mais comment ?

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Problème pour installer drivers intel 82845G de ma CG
    Par jeanbi dans le forum Matériel
    Réponses: 5
    Dernier message: 01/12/2004, 09h50
  2. Problème de boot cd pour install sous Mandrake
    Par hirochirak dans le forum Administration système
    Réponses: 2
    Dernier message: 26/03/2004, 09h20
  3. [Kylix] besoin d'aide pour installer kylix3
    Par Sph@x dans le forum EDI
    Réponses: 3
    Dernier message: 11/02/2004, 13h53
  4. Réponses: 4
    Dernier message: 26/01/2004, 13h50
  5. X11 obligatoire pour install console ?
    Par ovh dans le forum Applications et environnements graphiques
    Réponses: 4
    Dernier message: 06/11/2003, 16h50

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo