diff -r 70244c730ea0 -r 5cf48744a700 hedgewars/LuaPas.pas --- a/hedgewars/LuaPas.pas Wed Mar 03 06:30:51 2010 +0000 +++ b/hedgewars/LuaPas.pas Wed Mar 03 11:22:23 2010 +0000 @@ -19,17 +19,9 @@ lua_State = record end; Plua_State = ^lua_State; -const -{$IFDEF UNIX} - {$IFDEF DARWIN} - LuaLibName = 'lua'; - {$ELSE} - LuaLibName = 'lua5.1.so'; - {$ENDIF} -{$ELSE} - LuaLibName = 'lua.dll'; -{$ENDIF} - +// only looking for "lua" might be dangerous but including version numbers +// unfortunately causes trouble on some linux/unix systems. +const LuaLibName = 'lua'; (*****************************************************************************) (* luaconfig.h *)