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
046bfcf1
Commit
046bfcf1
authored
Feb 14, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove VLC_Changeset, src/misc/revision.c, fixes make
parent
dbfffa2a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
30 deletions
+0
-30
include/vlc_common.h
include/vlc_common.h
+0
-1
src/Makefile.am
src/Makefile.am
+0
-21
src/libvlccore.sym
src/libvlccore.sym
+0
-1
src/misc/.gitignore
src/misc/.gitignore
+0
-1
src/version.c
src/version.c
+0
-6
No files found.
include/vlc_common.h
View file @
046bfcf1
...
...
@@ -855,7 +855,6 @@ VLC_EXPORT( const char *, VLC_CompileHost, ( void ) LIBVLC_USED );
VLC_EXPORT
(
const
char
*
,
VLC_CompileDomain
,
(
void
)
LIBVLC_USED
);
VLC_EXPORT
(
const
char
*
,
VLC_Compiler
,
(
void
)
LIBVLC_USED
);
VLC_EXPORT
(
const
char
*
,
VLC_Error
,
(
int
)
LIBVLC_USED
);
VLC_EXPORT
(
const
char
*
,
VLC_Changeset
,
(
void
)
LIBVLC_USED
);
/*****************************************************************************
* Additional vlc stuff
...
...
src/Makefile.am
View file @
046bfcf1
...
...
@@ -172,7 +172,6 @@ AM_LDFLAGS += -avoid-version
endif
libvlccore_la_SOURCES
=
$(SOURCES_libvlc)
nodist_libvlccore_la_SOURCES
=
misc/revision.c
libvlccore_la_CFLAGS
=
`
$(VLC_CONFIG)
--cflags
libvlc
`
\
-DMODULE_STRING
=
\"
main
\"
\
-DLOCALEDIR
=
\"
$(localedir)
\"
\
...
...
@@ -464,26 +463,6 @@ SOURCES_libvlc_control = \
control/mediacontrol_audio_video.c
\
control/media_discoverer.c
###############################################################################
# Stamp rules
###############################################################################
misc/revision.c.tmp
:
rm
-f
--
$@
echo
"/* AUTOGENERATED FILE - DO NOT EDIT */"
>
$@
REVISION
=
"
$$
(cd "
$(top_srcdir)
"; git describe 2>/dev/null || echo "
$(VERSION)
")"
;
\
echo
"const char psz_vlc_changeset[] =
\"
$$
REVISION
\"
;"
>>
$@
diff
$@
misc/revision.c
>
/dev/null 2>&1
||
\
cat
misc/revision.c.tmp
>
misc/revision.c
misc/revision.c
:
$(MAKE)
misc/revision.c.tmp
cat
misc/revision.c.tmp
>
misc/revision.c
BUILT_SOURCES
+=
misc/revision.c.tmp misc/revision.c
.PHONY
:
misc/revision.c.tmp
###############################################################################
# Unit/regression test
###############################################################################
...
...
src/libvlccore.sym
View file @
046bfcf1
...
...
@@ -430,7 +430,6 @@ vlc_b64_decode_binary_to_buffer
vlc_b64_encode
vlc_b64_encode_binary
vlc_cancel
VLC_Changeset
vlc_clone
VLC_CompileBy
VLC_CompileDomain
...
...
src/misc/.gitignore
deleted
100644 → 0
View file @
dbfffa2a
revision.c
src/version.c
View file @
046bfcf1
...
...
@@ -54,9 +54,3 @@ DECLARE_VLC_VERSION( CompileBy, COMPILE_BY );
DECLARE_VLC_VERSION
(
CompileHost
,
COMPILE_HOST
);
DECLARE_VLC_VERSION
(
CompileDomain
,
COMPILE_DOMAIN
);
DECLARE_VLC_VERSION
(
Compiler
,
COMPILER
);
extern
const
char
psz_vlc_changeset
[];
const
char
*
VLC_Changeset
(
void
)
{
return
psz_vlc_changeset
;
}
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