Skip to content

Commit

Permalink
vlc: Disable Lua support to work around build error
Browse files Browse the repository at this point in the history
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
  • Loading branch information
pmenzel committed Feb 18, 2018
1 parent e7ed8f6 commit dd43710
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vlc.be0
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ PATCHURL+=(/src/mariux/patches/vlc.git-8311cdc09fa06a192cc5ca34368d2116e57bb936.

mee_configure() {
BUILDCC=gcc \
bee_configure
bee_configure \
--disable-lua
}

mee_build() {
Expand Down

0 comments on commit dd43710

Please sign in to comment.