From: Jan Rękorajski Date: Mon, 29 Jul 2013 12:35:35 +0000 (+0200) Subject: - added missing patch X-Git-Tag: auto/th/rpm-5.4.12-1~2 X-Git-Url: http://git.pld-linux.org/gitweb.cgi?a=commitdiff_plain;h=bdca98625e9015f2b88b2240526dbc6c17f5b21b;p=packages%2Frpm.git - added missing patch --- diff --git a/rpm-fix-internal-lua-build.patch b/rpm-fix-internal-lua-build.patch new file mode 100644 index 0000000..64e30f3 --- /dev/null +++ b/rpm-fix-internal-lua-build.patch @@ -0,0 +1,40 @@ +diff -ur rpm-5.4.12/lua/linit.c rpm-5.4.12.lua/lua/linit.c +--- rpm-5.4.12/lua/linit.c 2013-07-29 12:55:10.414926615 +0200 ++++ rpm-5.4.12.lua/lua/linit.c 2013-07-29 12:52:16.932990663 +0200 +@@ -41,7 +41,7 @@ + {LUA_DBLIBNAME, luaopen_debug}, + {"rex_posix", luaopen_rex_posix}, + {"rex_pcre", luaopen_rex_pcre}, +- {"posix", luaopen_posix}, ++ {"posix", luaopen_posix_c}, + {NULL, NULL} + }; + +diff -ur rpm-5.4.12/lua/local/lposix.c rpm-5.4.12.lua/lua/local/lposix.c +--- rpm-5.4.12/lua/local/lposix.c 2013-06-29 23:58:11.000000000 +0200 ++++ rpm-5.4.12.lua/lua/local/lposix.c 2013-07-29 12:49:02.437509943 +0200 +@@ -3934,6 +3934,10 @@ + MENTRY( NFILE ); + MENTRY( NOBUFS ); + #if !defined(__APPLE__) ++// sys/param.h defines NODEV as ((dev_t) -1) which confuses MENTRY macro ++#ifdef NODEV ++#undef NODEV ++#endif + MENTRY( NODEV ); + #endif + MENTRY( NOENT ); +diff -ur rpm-5.4.12/lua/local/lposix.h rpm-5.4.12.lua/lua/local/lposix.h +--- rpm-5.4.12/lua/local/lposix.h 2004-03-23 06:09:14.000000000 +0100 ++++ rpm-5.4.12.lua/lua/local/lposix.h 2013-07-29 12:52:09.029570083 +0200 +@@ -1,7 +1,9 @@ + #ifndef LPOSIX_H + #define LPOSIX_H + +-int luaopen_posix (lua_State *L) ++#include ++ ++int luaopen_posix_c (lua_State *L) + /*@modifies L @*/; + + #endif