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
ab0944e9
Commit
ab0944e9
authored
Aug 18, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused prefix stuff from vlc-config
parent
873280f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
29 deletions
+0
-29
vlc-config.in.in
vlc-config.in.in
+0
-29
No files found.
vlc-config.in.in
View file @
ab0944e9
#!@SHELL@
#!@SHELL@
prefix="@prefix@"
exec_prefix="@exec_prefix@"
exec_prefix_set=no
datarootdir="@datarootdir@"
optim="@optim@"
optim="@optim@"
cppflags=""
cppflags=""
...
@@ -24,8 +19,6 @@ usage()
...
@@ -24,8 +19,6 @@ usage()
cat << BLAH
cat << BLAH
Usage: vlc-config OPTIONS MODULES
Usage: vlc-config OPTIONS MODULES
Options:
Options:
[--prefix[=DIR]] set prefix
[--exec-prefix[=DIR]] set exec prefix
[--version] print version and exit
[--version] print version and exit
[--libs] output linking flags
[--libs] output linking flags
[--cflags] output C compilation flags
[--cflags] output C compilation flags
...
@@ -97,22 +90,6 @@ while test $# -gt 0; do
...
@@ -97,22 +90,6 @@ while test $# -gt 0; do
esac
esac
case "$tgt" in
case "$tgt" in
--prefix=*)
prefix="${optarg}"
if test "${exec_prefix_set}" = no ; then
exec_prefix="${optarg}"
fi
;;
--prefix)
echo_prefix=yes
;;
--exec-prefix=*)
exec_prefix="${optarg}"
exec_prefix_set=yes
;;
--exec-prefix)
echo_exec_prefix=yes
;;
--version)
--version)
echo "@VERSION@"
echo "@VERSION@"
exit 0
exit 0
...
@@ -161,12 +138,6 @@ fi
...
@@ -161,12 +138,6 @@ fi
#
#
# Output what we were asked
# Output what we were asked
#
#
if test "${echo_prefix}" = yes; then
echo "${prefix}"
fi
if test "${echo_exec_prefix}" = yes; then
echo "${exec_prefix}"
fi
if test "${echo_cppflags}" = yes; then
if test "${echo_cppflags}" = yes; then
echo "${cppflags}"
echo "${cppflags}"
fi
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