Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
29847260
Commit
29847260
authored
Dec 28, 2009
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lua: Make sure it builds with --disable-nls.
parent
1676fb0f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
modules/misc/lua/intf.c
modules/misc/lua/intf.c
+2
-0
modules/misc/lua/libs.h
modules/misc/lua/libs.h
+2
-0
No files found.
modules/misc/lua/intf.c
View file @
29847260
...
@@ -211,7 +211,9 @@ int Open_LuaIntf( vlc_object_t *p_this )
...
@@ -211,7 +211,9 @@ int Open_LuaIntf( vlc_object_t *p_this )
luaopen_video
(
L
);
luaopen_video
(
L
);
luaopen_vlm
(
L
);
luaopen_vlm
(
L
);
luaopen_volume
(
L
);
luaopen_volume
(
L
);
#ifdef ENABLE_NLS
luaopen_gettext
(
L
);
luaopen_gettext
(
L
);
#endif
/* clean up */
/* clean up */
lua_pop
(
L
,
1
);
lua_pop
(
L
,
1
);
...
...
modules/misc/lua/libs.h
View file @
29847260
...
@@ -42,6 +42,8 @@ void luaopen_variables( lua_State * );
...
@@ -42,6 +42,8 @@ void luaopen_variables( lua_State * );
void
luaopen_video
(
lua_State
*
);
void
luaopen_video
(
lua_State
*
);
void
luaopen_vlm
(
lua_State
*
);
void
luaopen_vlm
(
lua_State
*
);
void
luaopen_volume
(
lua_State
*
);
void
luaopen_volume
(
lua_State
*
);
#ifdef ENABLE_NLS
void
luaopen_gettext
(
lua_State
*
);
void
luaopen_gettext
(
lua_State
*
);
#endif
#endif
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment