fix(build): distinguish vim.mpack from global require'mpack'

problem: the api of vim.mpack is not compatible with a system provided mpack
solution: don't require 'mpack' directly from the system path
This commit is contained in:
bfredl
2023-04-20 14:41:47 +02:00
parent dbcd1985d1
commit ffaf74f147
9 changed files with 20 additions and 11 deletions

View File

@@ -1171,9 +1171,6 @@ static const luaL_reg mpack_functions[] = {
{NULL, NULL}
};
#ifdef NLUA_WIN32
__declspec(dllexport)
#endif
int luaopen_mpack(lua_State *L)
{
/* Unpacker */

View File

@@ -1,6 +1,3 @@
#include <lua.h>
#ifdef NLUA_WIN32
__declspec(dllexport)
#endif
int luaopen_mpack(lua_State *L);