Browse Source

* move systems_darwin constant to correct location

git-svn-id: trunk@8580 -
peter 18 years ago
parent
commit
4d48f2c6ff
1 changed files with 4 additions and 4 deletions
  1. 4 4
      compiler/systems.pas

+ 4 - 4
compiler/systems.pas

@@ -143,10 +143,6 @@ interface
              system_x86_64_darwin       { 61 }
        );
 
-     const
-       systems_darwin = [system_powerpc_darwin,system_i386_darwin,
-                         system_powerpc64_darwin,system_x86_64_darwin];
-
      type
        tasm = (as_none
              ,as_gas                   { standard gnu assembler }
@@ -383,6 +379,10 @@ interface
        system_all_windows = [system_i386_win32,system_x86_64_win64,system_ia64_win64,
                              system_arm_wince,system_i386_wince];
 
+       { all darwin systems }
+       systems_darwin = [system_powerpc_darwin,system_i386_darwin,
+                         system_powerpc64_darwin,system_x86_64_darwin];
+
        { all systems supporting exports from programs or units }
        system_unit_program_exports = [system_i386_win32,
                                          system_i386_wdosx,