Browse Source

+ add win16 to systems_all_windows; this enables the win32-like mangling of the
dll internal symbols names on win16 as well

git-svn-id: trunk@31537 -

nickysn 10 years ago
parent
commit
1b84fbee57
1 changed files with 3 additions and 2 deletions
  1. 3 2
      compiler/systems.pas

+ 3 - 2
compiler/systems.pas

@@ -240,12 +240,13 @@ interface
 
 
        systems_aix = [system_powerpc_aix,system_powerpc64_aix];
        systems_aix = [system_powerpc_aix,system_powerpc64_aix];
 
 
-       { all real windows systems, no cripple ones like wince, wdosx et. al. }
+       { all real windows systems, no cripple ones like win16, wince, wdosx et. al. }
        systems_windows = [system_i386_win32,system_x86_64_win64];
        systems_windows = [system_i386_win32,system_x86_64_win64];
 
 
        { all windows systems }
        { all windows systems }
        systems_all_windows = [system_i386_win32,system_x86_64_win64,
        systems_all_windows = [system_i386_win32,system_x86_64_win64,
-                             system_arm_wince,system_i386_wince];
+                             system_arm_wince,system_i386_wince,
+                             system_i8086_win16];
 
 
        { all darwin systems }
        { all darwin systems }
        systems_darwin = [system_powerpc_darwin,system_i386_darwin,
        systems_darwin = [system_powerpc_darwin,system_i386_darwin,