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
873280f2
Commit
873280f2
authored
Aug 18, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove broken and useless vlc-config --list
parent
827ca16d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
21 deletions
+2
-21
HACKING
HACKING
+2
-2
m4/vlc.m4
m4/vlc.m4
+0
-2
vlc-config.in.in
vlc-config.in.in
+0
-17
No files found.
HACKING
View file @
873280f2
...
...
@@ -69,8 +69,8 @@ file. If you add a new directory you will need to create a new Modules.am,
inside that directory. Do not forget to add a corresponding
Makefile line at the end of configure.ac for this new Modules.am file.
To have the module built, you need to add a call to VLC_ADD_PLUGIN
or
VLC_ADD_BUILTINS to
configure.ac with your new module name as argument.
To have the module built, you need to add a call to VLC_ADD_PLUGIN
to
configure.ac with your new module name as argument.
Look at other modules for guidelines on how to add build and linkage options.
After changing configure.ac you will always need to rerun bootstrap and
...
...
m4/vlc.m4
View file @
873280f2
...
...
@@ -90,8 +90,6 @@ AC_DEFUN([VLC_OUTPUT_VLC_CONFIG_IN], [
sed -ne '/#@1@#/q;p' < "${srcdir}/vlc-config.in.in" \
| sed \
-e "s/@optim@/${enable_optimizations}/" \
-e "s/@PLUGINS@/${PLUGINS}/" \
-e "s/@BUILTINS@/${BUILTINS}/" \
-e "s/@CFLAGS_TUNING@/${CFLAGS_TUNING}/" \
> vlc-config.in
...
...
vlc-config.in.in
View file @
873280f2
...
...
@@ -7,8 +7,6 @@ datarootdir="@datarootdir@"
optim="@optim@"
plugins="@PLUGINS@ "
cppflags=""
cflags=""
cxxflags=""
...
...
@@ -29,7 +27,6 @@ Options:
[--prefix[=DIR]] set prefix
[--exec-prefix[=DIR]] set exec prefix
[--version] print version and exit
[--list] print modules names and exit
[--libs] output linking flags
[--cflags] output C compilation flags
[--cxxflags] output C++ compilation flags
...
...
@@ -120,9 +117,6 @@ while test $# -gt 0; do
echo "@VERSION@"
exit 0
;;
--list)
echo_list=yes
;;
--cflags)
echo_cflags=yes
;;
...
...
@@ -146,9 +140,6 @@ while test $# -gt 0; do
;;
libvlccore)
;;
plugin)
echo_plugin=yes
;;
*)
module="$tgt"
;;
...
...
@@ -170,14 +161,6 @@ fi
#
# Output what we were asked
#
if test "${echo_list}" = yes; then
if test "${echo_plugin}" = yes; then
echo "${plugins}"
printf '\n'
fi
exit 0
fi
if test "${echo_prefix}" = yes; then
echo "${prefix}"
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