hedgewars/uPhysFSLayer.pas
branchcmake_pascal
changeset 8849 db108c851315
parent 8800 5e837e6d8f94
child 9224 bce8cf41d666
equal deleted inserted replaced
8846:c156ac6ddc2b 8849:db108c851315
     8 
     8 
     9 {$IFNDEF WIN32}
     9 {$IFNDEF WIN32}
    10     {$linklib physfs}
    10     {$linklib physfs}
    11     {$linklib physlayer}
    11     {$linklib physlayer}
    12 
    12 
    13     {statically linking physfs brings IOKit dependency on OSX while unders other
    13     {statically linking physfs brings IOKit dependency on OSX and
    14      UNIX configuration divdi3 is not defined (so we add it ourselves)}
    14      stdc++ under linux 32 bit because divdi3 is not defined}
    15     {$IFDEF PHYSFS_INTERNAL}
    15     {$IFDEF PHYSFS_INTERNAL}
    16         {$IFDEF DARWIN}
    16         {$IFDEF DARWIN}
    17             {$linkframework IOKit}
    17             {$linkframework IOKit}
    18         {$ELSE}
    18         {$ELSE}
    19             {$linklib stdc++}
    19             {$IFDEF CPU32}
       
    20                 {$linklib stdc++}
       
    21             {$ENDIF}
    20         {$ENDIF}
    22         {$ENDIF}
    21     {$ENDIF}
    23     {$ENDIF}
    22 {$ENDIF}
    24 {$ENDIF}
    23 
    25 
    24 procedure initModule;
    26 procedure initModule;