Selaa lähdekoodia

Amiga-likes: support unit_env environment variable for unit paths

git-svn-id: trunk@31180 -
Károly Balogh 10 vuotta sitten
vanhempi
commit
0d1c85a095
3 muutettua tiedostoa jossa 5 lisäystä ja 5 poistoa
  1. 2 2
      compiler/systems/i_amiga.pas
  2. 2 2
      compiler/systems/i_aros.pas
  3. 1 1
      compiler/systems/i_morph.pas

+ 2 - 2
compiler/systems/i_amiga.pas

@@ -36,7 +36,7 @@ unit i_amiga;
             shortname    : 'amiga';
             flags        : [tf_files_case_aware,tf_has_winlike_resources];
             cpu          : cpu_m68k;
-            unit_env     : '';
+            unit_env     : 'AMIGAUNITS';
             extradefines : 'HASAMIGA';
             exeext       : '';
             defext       : '.def';
@@ -99,7 +99,7 @@ unit i_amiga;
             shortname    : 'amiga';
             flags        : [tf_files_case_aware];
             cpu          : cpu_powerpc;
-            unit_env     : '';
+            unit_env     : 'AMIGAUNITS';
             extradefines : 'PPC603;HASAMIGA;AMIGAOS4';
             exeext       : '';
             defext       : '.def';

+ 2 - 2
compiler/systems/i_aros.pas

@@ -36,7 +36,7 @@ unit i_aros;
             shortname    : 'aros';
             flags        : [tf_files_case_aware, tf_smartlink_library, tf_has_winlike_resources];
             cpu          : cpu_i386;
-            unit_env     : '';
+            unit_env     : 'AROSUNITS';
             extradefines : 'HASAMIGA';
             exeext       : '';
             defext       : '.def';
@@ -99,7 +99,7 @@ unit i_aros;
             shortname    : 'aros';
             flags        : [tf_files_case_aware, tf_smartlink_library, tf_has_winlike_resources];
             cpu          : cpu_x86_64;
-            unit_env     : '';
+            unit_env     : 'AROSUNITS';
             extradefines : 'HASAMIGA';
             exeext       : '';
             defext       : '.def';

+ 1 - 1
compiler/systems/i_morph.pas

@@ -36,7 +36,7 @@ unit i_morph;
             shortname    : 'MorphOS';
             flags        : [tf_files_case_aware,tf_smartlink_library,tf_has_winlike_resources];
             cpu          : cpu_powerpc;
-            unit_env     : '';
+            unit_env     : 'MORPHOSUNITS';
             extradefines : 'HASAMIGA';
             exeext       : '';
             defext       : '.def';