From bdca98625e9015f2b88b2240526dbc6c17f5b21b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20R=C4=99korajski?= Date: Mon, 29 Jul 2013 14:35:35 +0200 Subject: [PATCH] - added missing patch --- rpm-fix-internal-lua-build.patch | 40 ++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 rpm-fix-internal-lua-build.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 -- 2.44.0