Commit 8164218c authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

configure.ac: Switch to the new lua module.

parent 625f41c6
...@@ -1610,9 +1610,9 @@ if test "${enable_shout}" = "yes"; then ...@@ -1610,9 +1610,9 @@ if test "${enable_shout}" = "yes"; then
[AC_MSG_WARN(libshout library not found)]) [AC_MSG_WARN(libshout library not found)])
fi fi
dnl Lua playlist demux dnl Lua modules
AC_ARG_ENABLE(luaplaylist, AC_ARG_ENABLE(lua,
[ --enable-lua lua playlist demux plugin (default enabled)]) [ --enable-lua lua modules plugin (default enabled)])
if test "${enable_lua}" != "no" if test "${enable_lua}" != "no"
then then
PKG_CHECK_MODULES(LUA, lua5.1, PKG_CHECK_MODULES(LUA, lua5.1,
...@@ -1641,9 +1641,9 @@ then ...@@ -1641,9 +1641,9 @@ then
]) ])
if test "x${have_lua}" = "xyes" ; then if test "x${have_lua}" = "xyes" ; then
AC_DEFINE(HAVE_LUA, [], [Define if you have the lua library]) AC_DEFINE(HAVE_LUA, [], [Define if you have the lua library])
VLC_ADD_PLUGINS([luaplaylist luameta]) VLC_ADD_PLUGINS([lua])
VLC_ADD_LDFLAGS([luaplaylist luameta],[$LUA_LIBS]) VLC_ADD_LDFLAGS([lua],[$LUA_LIBS])
VLC_ADD_CFLAGS([luaplaylist luameta],[$LUA_CFLAGS]) VLC_ADD_CFLAGS([lua],[$LUA_CFLAGS])
fi fi
fi fi
...@@ -6041,6 +6041,7 @@ AC_CONFIG_FILES([ ...@@ -6041,6 +6041,7 @@ AC_CONFIG_FILES([
modules/meta_engine/Makefile modules/meta_engine/Makefile
modules/misc/Makefile modules/misc/Makefile
modules/misc/dummy/Makefile modules/misc/dummy/Makefile
modules/misc/lua/Makefile
modules/misc/memcpy/Makefile modules/misc/memcpy/Makefile
modules/misc/notify/Makefile modules/misc/notify/Makefile
modules/misc/testsuite/Makefile modules/misc/testsuite/Makefile
......
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