From dd437109f9df422fad50bca6e0b4e1dfd64a1016 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Sun, 18 Feb 2018 21:36:43 +0100 Subject: [PATCH] vlc: Disable Lua support to work around build error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Work around the error below, by disabling the Lua support [1]. VLC is not used that much, and the feature is not needed. ``` CC lua/libs/liblua_plugin_la-configuration.lo /dev/shm/bee-root/vlc/vlc-3.0.0-0/source/modules/lua/demux.c: In function ‘vlclua_demux_peek’: /dev/shm/bee-root/vlc/vlc-3.0.0-0/source/modules/lua/demux.c:55:13: error: implicit declaration of function ‘luaL_checkint’ [-Werror=implicit-function-declaration] int n = luaL_checkint( L, 1 ); ^ ``` [1] https://mailman.videolan.org/pipermail/vlc-devel/2015-February/101262.html --- vlc.be0 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vlc.be0 b/vlc.be0 index ae74f9c2f..76f6b861f 100755 --- a/vlc.be0 +++ b/vlc.be0 @@ -24,7 +24,8 @@ PATCHURL+=(/src/mariux/patches/vlc.git-8311cdc09fa06a192cc5ca34368d2116e57bb936. mee_configure() { BUILDCC=gcc \ - bee_configure + bee_configure \ + --disable-lua } mee_build() {