hedgewars/LuaPas.pas
changeset 2809 b8956af350c1
parent 2799 558b29bf00c5
child 2822 0533562bc3a4
equal deleted inserted replaced
2808:8f48b538d591 2809:b8956af350c1
    19   lua_State = record end;
    19   lua_State = record end;
    20   Plua_State = ^lua_State;
    20   Plua_State = ^lua_State;
    21 
    21 
    22 const
    22 const
    23 {$IFDEF UNIX}
    23 {$IFDEF UNIX}
    24   LuaLibName = 'lua5.1.so';
    24   {$IFDEF DARWIN}
    25 {$IFDEF DARWIN}
    25     LuaLibName = 'lua';
    26     LuaLibName = 'lua5.1.a';
    26   {$ELSE}
    27 {$ENDIF}
    27     LuaLibName = 'lua5.1.so';
       
    28   {$ENDIF}
    28 {$ELSE}
    29 {$ELSE}
    29   LuaLibName = 'lua5.1.dll';
    30   LuaLibName = 'lua5.1.dll';
    30 {$ENDIF}
    31 {$ENDIF}
    31 
    32 
    32 
    33