From 9b45b48c466765b6491778709a1c52e061480f76 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 25 Oct 2014 20:07:44 +0200 Subject: Drop libquvi support No development activity (or even any sign of life) for almost a year. A replacement based on youtube-dl will probably be provided before the next mpv release. Ask on the IRC channel if you want to test. Simplify the Lua check too: libquvi linking against a different Lua version than mpv was a frequent issue, but with libquvi gone, no direct dependency uses Lua, and such a clash is rather unlikely. --- waftools/fragments/lua.c | 24 ------------------------ waftools/fragments/lua_libquvi4.c | 3 --- waftools/fragments/lua_libquvi9.c | 3 --- 3 files changed, 30 deletions(-) delete mode 100644 waftools/fragments/lua.c delete mode 100644 waftools/fragments/lua_libquvi4.c delete mode 100644 waftools/fragments/lua_libquvi9.c (limited to 'waftools/fragments') diff --git a/waftools/fragments/lua.c b/waftools/fragments/lua.c deleted file mode 100644 index 896667b188..0000000000 --- a/waftools/fragments/lua.c +++ /dev/null @@ -1,24 +0,0 @@ -#include -#include -#include -#include - -// filled on the python side with .format() -{additional_lua_test_header} - -static void test_lua(void) {{ - lua_State *L = luaL_newstate(); - lua_pushstring(L, "test"); - lua_setglobal(L, "test"); -}} - -static void test_other(void) {{ - // filled on the python side with .format() - {additional_lua_test_code} -}} - -int main(void) {{ - test_lua(); - test_other(); - return 0; -}} diff --git a/waftools/fragments/lua_libquvi4.c b/waftools/fragments/lua_libquvi4.c deleted file mode 100644 index efcf30375a..0000000000 --- a/waftools/fragments/lua_libquvi4.c +++ /dev/null @@ -1,3 +0,0 @@ - quvi_t q; - if (quvi_init(&q) == QUVI_OK) - quvi_supported(q, "http://nope"); diff --git a/waftools/fragments/lua_libquvi9.c b/waftools/fragments/lua_libquvi9.c deleted file mode 100644 index e25ea1a462..0000000000 --- a/waftools/fragments/lua_libquvi9.c +++ /dev/null @@ -1,3 +0,0 @@ - quvi_t q = quvi_new(); - if (quvi_ok(q)) - quvi_supports(q, "http://nope", QUVI_SUPPORTS_MODE_OFFLINE, QUVI_SUPPORTS_TYPE_MEDIA); -- cgit v1.2.3