69c377b06a
- Add shared_link.patch: fix dynamic linking executable - Stop building static library OBS-URL: https://build.opensuse.org/request/show/1002891 OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua53?expand=0&rev=38
34 lines
1.0 KiB
Diff
34 lines
1.0 KiB
Diff
--- a/src/lundump.h
|
|
+++ b/src/lundump.h
|
|
@@ -26,7 +26,7 @@
|
|
LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name);
|
|
|
|
/* dump one chunk; from ldump.c */
|
|
-LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
|
|
+LUA_API int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
|
|
void* data, int strip);
|
|
|
|
#endif
|
|
|
|
--- a/src/lopcodes.h
|
|
+++ b/src/lopcodes.h
|
|
@@ -278,7 +278,7 @@
|
|
OpArgK /* argument is a constant or register/constant */
|
|
};
|
|
|
|
-LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES];
|
|
+LUA_API const lu_byte luaP_opmodes[NUM_OPCODES];
|
|
|
|
#define getOpMode(m) (cast(enum OpMode, luaP_opmodes[m] & 3))
|
|
#define getBMode(m) (cast(enum OpArgMask, (luaP_opmodes[m] >> 4) & 3))
|
|
@@ -287,7 +287,7 @@
|
|
#define testTMode(m) (luaP_opmodes[m] & (1 << 7))
|
|
|
|
|
|
-LUAI_DDEC const char *const luaP_opnames[NUM_OPCODES+1]; /* opcode names */
|
|
+LUA_API const char *const luaP_opnames[NUM_OPCODES+1]; /* opcode names */
|
|
|
|
|
|
/* number of list items to accumulate before a SETLIST instruction */
|
|
|