Commit 29847260 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

lua: Make sure it builds with --disable-nls.

parent 1676fb0f
......@@ -211,7 +211,9 @@ int Open_LuaIntf( vlc_object_t *p_this )
luaopen_video( L );
luaopen_vlm( L );
luaopen_volume( L );
#ifdef ENABLE_NLS
luaopen_gettext( L );
#endif
/* clean up */
lua_pop( L, 1 );
......
......@@ -42,6 +42,8 @@ void luaopen_variables( lua_State * );
void luaopen_video( lua_State * );
void luaopen_vlm( lua_State * );
void luaopen_volume( lua_State * );
#ifdef ENABLE_NLS
void luaopen_gettext( lua_State * );
#endif
#endif
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