Commit 3c1df96c authored by Antoine Cellerier's avatar Antoine Cellerier

Mention the lua intf move in NEWS. Print an error if lua wasn't found and...

Mention the lua intf move in NEWS. Print an error if lua wasn't found and wasn't explicitly disabled in configure.
parent c7b08753
......@@ -63,6 +63,11 @@ Service discovery:
Stream output:
* New smem module, streaming to memory
Interfaces:
* Renamed the legacy rc, telnet and http interfaces to oldrc, oldtelnet
and oldhttp.
* rc, telnet and http are now implemented using the lua interface system.
Mac OS X Interface:
* Completely reworked user interface (based upon works from GSoC 2008)
......
......@@ -1794,6 +1794,8 @@ then
if test "x${have_lua}" = "xyes" ; then
VLC_ADD_LIBS([lua],[$LUA_LIBS])
VLC_ADD_CFLAGS([lua],[$LUA_CFLAGS])
else
AC_MSG_ERROR([Could not find lua. Lua is needed for some interfaces (rc, telnet, http) as well as many other custom scripts. Use --disable-lua to ignore this error.])
fi
fi
AM_CONDITIONAL(BUILD_LUA, [test "${have_lua}" = "yes"])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment