Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
dbfffa2a
Commit
dbfffa2a
authored
Feb 14, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove all uses of VLC_Changeset
parent
74d8818a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
13 deletions
+3
-13
modules/control/http/http.c
modules/control/http/http.c
+0
-1
modules/gui/macosx/about.m
modules/gui/macosx/about.m
+2
-7
modules/gui/qt4/dialogs/help.cpp
modules/gui/qt4/dialogs/help.cpp
+0
-1
src/control/core.c
src/control/core.c
+1
-1
src/libvlc.c
src/libvlc.c
+0
-3
No files found.
modules/control/http/http.c
View file @
dbfffa2a
...
...
@@ -432,7 +432,6 @@ static void ParseExecute( httpd_file_sys_t *p_args, char *p_buffer,
mvar_AppendNewVar
(
p_args
->
vars
,
"vlc_compile_domain"
,
VLC_CompileDomain
()
);
mvar_AppendNewVar
(
p_args
->
vars
,
"vlc_compiler"
,
VLC_Compiler
()
);
mvar_AppendNewVar
(
p_args
->
vars
,
"vlc_changeset"
,
VLC_Changeset
()
);
mvar_AppendNewVar
(
p_args
->
vars
,
"stream_position"
,
position
);
mvar_AppendNewVar
(
p_args
->
vars
,
"stream_time"
,
time
);
mvar_AppendNewVar
(
p_args
->
vars
,
"stream_length"
,
length
);
...
...
modules/gui/macosx/about.m
View file @
dbfffa2a
...
...
@@ -86,13 +86,8 @@ static VLAboutBox *_o_sharedInstance = nil;
[
o_about_window
setTitle
:
_NS
(
"About VLC media player"
)];
/* setup the creator / revision field */
if
(
VLC_Changeset
()
!=
"exported"
)
[
o_revision_field
setStringValue
:
[
NSString
stringWithFormat
:
_NS
(
"Compiled by %s, based on Git commit %s"
),
VLC_CompileBy
(),
VLC_Changeset
()]];
else
[
o_revision_field
setStringValue
:
[
NSString
stringWithFormat
:
_NS
(
"Compiled by %s"
),
VLC_CompileBy
()]];
[
o_revision_field
setStringValue
:
[
NSString
stringWithFormat
:
_NS
(
"Compiled by %s"
),
VLC_CompileBy
()]];
/* Setup the nameversion field */
[
o_name_version_field
setStringValue
:
[
NSString
stringWithFormat
:
@"Version %s (%s)"
,
VLC_Version
(),
PLATFORM
]];
...
...
modules/gui/qt4/dialogs/help.cpp
View file @
dbfffa2a
...
...
@@ -120,7 +120,6 @@ AboutDialog::AboutDialog( QWidget *parent, intf_thread_t *_p_intf)
+
qfu
(
VLC_CompileBy
()
)
+
"@"
+
qfu
(
VLC_CompileHost
()
)
+
"."
+
qfu
(
VLC_CompileDomain
()
)
+
".
\n
"
+
qtr
(
"Compiler: "
)
+
qfu
(
VLC_Compiler
()
)
+
".
\n
"
+
qtr
(
"Based on Git commit: "
)
+
qfu
(
VLC_Changeset
()
)
+
".
\n
"
+
qtr
(
"You are using the Qt4 Interface.
\n\n
"
)
+
qtr
(
"Copyright (C) "
)
+
COPYRIGHT_YEARS
+
qtr
(
" by the VideoLAN Team.
\n
"
)
...
...
src/control/core.c
View file @
dbfffa2a
...
...
@@ -206,7 +206,7 @@ const char * libvlc_get_compiler(void)
const
char
*
libvlc_get_changeset
(
void
)
{
return
VLC_Changeset
()
;
return
"exported"
;
}
/* export internal libvlc_instance for ugly hacks with libvlccore */
...
...
src/libvlc.c
View file @
dbfffa2a
...
...
@@ -1982,9 +1982,6 @@ static void Version( void )
utf8_fprintf
(
stdout
,
_
(
"Compiled by %s@%s.%s
\n
"
),
VLC_CompileBy
(),
VLC_CompileHost
(),
VLC_CompileDomain
()
);
utf8_fprintf
(
stdout
,
_
(
"Compiler: %s
\n
"
),
VLC_Compiler
()
);
if
(
strcmp
(
VLC_Changeset
(),
"exported"
)
)
utf8_fprintf
(
stdout
,
_
(
"Based upon Git commit [%s]
\n
"
),
VLC_Changeset
()
);
utf8_fprintf
(
stdout
,
LICENSE_MSG
);
#ifdef WIN32
/* Pause the console because it's destroyed when we exit */
...
...
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