Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
c3a51903
Commit
c3a51903
authored
May 01, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some leftovers from pre-libtool era
(Note __BUILTIN__ was not used anymore as we have !__PLUGIN__)
parent
473a276f
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
18 deletions
+0
-18
bootstrap
bootstrap
+0
-1
extras/analyser/zsh.cpp
extras/analyser/zsh.cpp
+0
-1
m4/vlc.m4
m4/vlc.m4
+0
-4
src/libvlc-module.c
src/libvlc-module.c
+0
-1
src/modules/.gitignore
src/modules/.gitignore
+0
-1
vlc-config.in.in
vlc-config.in.in
+0
-10
No files found.
bootstrap
View file @
c3a51903
...
...
@@ -113,7 +113,6 @@ mv -f INSTALL.git INSTALL
## files which need to be regenerated
##
rm
-f
vlc-config.in vlc-config
rm
-f
src/misc/modules_builtin.h
rm
-f
stamp-h
*
# Shut up
...
...
extras/analyser/zsh.cpp
View file @
c3a51903
...
...
@@ -43,7 +43,6 @@ typedef std::pair<int, std::string> mcpair;
/* evil hack */
#undef __PLUGIN__
#undef __BUILTIN__
#include <../src/modules/modules.h>
void
ParseModules
(
mumap
&
mods
,
mcmap
&
mods2
);
...
...
m4/vlc.m4
View file @
c3a51903
...
...
@@ -6,10 +6,6 @@ dnl Macros to add plugins or builtins and handle their flags
m4_pattern_allow([^PKG_CONFIG(_LIBDIR)?$])
AC_DEFUN([VLC_ADD_BUILTINS], [
BUILTINS="${BUILTINS} $1"
])
AC_DEFUN([VLC_ADD_PLUGIN], [
m4_foreach_w([element], [$1], [
[PLUGINS="${PLUGINS} ]element["]
...
...
src/libvlc-module.c
View file @
c3a51903
...
...
@@ -27,7 +27,6 @@
// Pretend we are a builtin module
#define MODULE_NAME main
#define MODULE_PATH main
#define __BUILTIN__
#ifdef HAVE_CONFIG_H
...
...
src/modules/.gitignore
deleted
100644 → 0
View file @
473a276f
builtin.h
vlc-config.in.in
View file @
c3a51903
...
...
@@ -8,7 +8,6 @@ datarootdir="@datarootdir@"
optim="@optim@"
plugins="@PLUGINS@ "
builtins="@BUILTINS@ "
cppflags=""
cflags=""
...
...
@@ -38,7 +37,6 @@ Options:
Modules:
vlc the main VLC object
plugin flags for plugin modules
builtin flags for built-in modules
MODULE any available module (dummy, gtk, avi, etc.)
libs flags for external libs
BLAH
...
...
@@ -159,10 +157,6 @@ while test $# -gt 0; do
echo_plugin=yes
cppflags="${cppflags} -D__LIBVLC__ -D__PLUGIN__"
;;
builtin)
echo_builtin=yes
cppflags="${cppflags} -D__LIBVLC__ -D__BUILTIN__"
;;
*)
module="$tgt"
;;
...
...
@@ -189,10 +183,6 @@ if test "${echo_list}" = yes; then
echo "${plugins}"
printf '\n'
fi
if test "${echo_builtin}" = yes; then
echo "${builtins}"
printf '\n'
fi
exit 0
fi
...
...
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