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
a62a3ce0
Commit
a62a3ce0
authored
Jul 02, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contrib: add bootstrap options for sout and optical discs support
parent
c8a5d5fc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
contrib/bootstrap
contrib/bootstrap
+13
-1
No files found.
contrib/bootstrap
View file @
a62a3ce0
...
...
@@ -26,6 +26,8 @@ usage()
echo
" --prefix=PREFIX install files in PREFIX"
echo
" --disable-FOO configure to not build package FOO"
echo
" --enable-FOO configure to build package FOO"
echo
" --disable-disc configure to not build optical discs packages"
echo
" --disable-sout configure to not build stream output packages"
}
BUILD
=
...
...
@@ -33,6 +35,8 @@ HOST=
PREFIX
=
PKGS_ENABLE
=
PKGS_DISABLE
=
BUILD_ENCODERS
=
"1"
BUILD_DISCS
=
"1"
if
test
!
-f
"../src/main.mak"
then
...
...
@@ -56,6 +60,12 @@ do
--prefix
=
*
)
PREFIX
=
"
${
1
#--prefix=
}
"
;;
--disable-disc
)
BUILD_DISCS
=
;;
--disable-sout
)
BUILD_ENCODERS
=
;;
--disable-
*
)
PKGS_DISABLE
=
"
${
PKGS_DISABLE
}
${
1
#--disable-
}
"
;;
...
...
@@ -134,6 +144,9 @@ add_make_enabled()
done
}
test
-z
"
$BUILD_DISCS
"
||
add_make_enabled
"BUILD_DISCS"
test
-z
"
$BUILD_ENCODERS
"
||
add_make_enabled
"BUILD_ENCODERS"
#
# Checks
#
...
...
@@ -158,7 +171,6 @@ case "${OS}" in
add_make_enabled
"HAVE_WINCE"
;;
esac
add_make_enabled
"BUILD_ENCODERS"
#
# Results output
...
...
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