Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libvlcjni
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Steve Lhomme
libvlcjni
Commits
a94548ff
Commit
a94548ff
authored
2 months ago
by
Steve Lhomme
Browse files
Options
Downloads
Patches
Plain Diff
buildsystem: add an option to select the license of contribs
parent
a41260fd
Branches
no-prebuilt
No related tags found
No related merge requests found
Pipeline
#557126
passed with stage
in 7 minutes and 9 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
buildsystem/build-libvlc.sh
+27
-3
27 additions, 3 deletions
buildsystem/build-libvlc.sh
buildsystem/compile-libvlc.sh
+11
-1
11 additions, 1 deletion
buildsystem/compile-libvlc.sh
with
38 additions
and
4 deletions
buildsystem/build-libvlc.sh
+
27
−
3
View file @
a94548ff
...
...
@@ -13,11 +13,17 @@ AVLC_MAKE_PREBUILT_CONTRIBS=0
# Indicates that prebuit contribs should be
# used instead of building the contribs from source
AVLC_USE_PREBUILT_CONTRIBS
=
0
# Indicates the license of contribs
AVLC_CONTRIB_LICENSE
=
g
while
[
$#
-gt
0
]
;
do
case
$1
in
help
|
--help
)
echo
"Use -a to set the ARCH"
echo
"Use --release to build in release mode"
echo
"Use --license <l> to build contribs with license l"
echo
" g: GPLv3 (default)"
echo
" l: LGPLv3 + ad-clauses"
echo
" a: LGPLv2 + ad-clauses"
exit
1
;;
a|-a
)
...
...
@@ -27,6 +33,10 @@ while [ $# -gt 0 ]; do
release|--release
)
AVLC_RELEASE
=
1
;;
--license
)
AVLC_CONTRIB_LICENSE
=
$2
shift
;;
--package-contribs
)
AVLC_MAKE_PREBUILT_CONTRIBS
=
1
;;
...
...
@@ -282,7 +292,6 @@ VLC_CONTRIB_ARGS="\
--disable-x265
\
--enable-ad-clauses
\
--enable-dvdnav
\
--enable-dvdread
\
--enable-fluidlite
\
--enable-gme
\
--enable-harfbuzz
\
...
...
@@ -347,14 +356,12 @@ VLC_CONFIGURE_ARGS="\
--enable-chromecast
\
--enable-dvbpsi
\
--enable-dvdnav
\
--enable-dvdread
\
--enable-fluidlite
\
--enable-gles2
\
--enable-gme
\
--enable-jpeg
\
--enable-libass
\
--enable-libxml2
\
--enable-live555
\
--enable-lua
\
--enable-matroska
\
--enable-mod
\
...
...
@@ -477,6 +484,23 @@ else
VLC_CONTRIB_ARGS
=
"
$VLC_CONTRIB_ARGS
--disable-gettext"
fi
case
$AVLC_CONTRIB_LICENSE
in
l
)
# LGPL v3 + ad-clauses
VLC_CONTRIB_ARGS
=
"
$VLC_CONTRIB_ARGS
--disable-gpl --enable-ad-clauses"
VLC_CONFIGURE_ARGS
=
"
$VLC_CONFIGURE_ARGS
--enable-live555"
;;
a
)
# LGPL v2.1 + ad-clauses
VLC_CONTRIB_ARGS
=
"
$VLC_CONTRIB_ARGS
--disable-gpl --disable-gnuv3 --enable-ad-clauses"
;;
g|
*
)
# GPL v3
VLC_CONFIGURE_ARGS
=
"
$VLC_CONFIGURE_ARGS
--enable-live555 --enable-dvdread"
;;
esac
(
cd
$VLC_CONTRIB_DIR
&&
ANDROID_ABI
=
${
ANDROID_ABI
}
ANDROID_API
=
${
ANDROID_API
}
\
../bootstrap
--host
=
${
TARGET_TUPLE
}
${
VLC_CONTRIB_ARGS
}
)
avlc_checkfail
"contribs: bootstrap failed"
...
...
This diff is collapsed.
Click to expand it.
buildsystem/compile-libvlc.sh
+
11
−
1
View file @
a94548ff
...
...
@@ -15,11 +15,17 @@ AVLC_MAKE_PREBUILT_CONTRIBS=0
AVLC_USE_PREBUILT_CONTRIBS
=
0
# JNI build can be disabled for testing/CI purpose
AVLC_BUILD_JNI
=
1
# Indicates the license of contribs
AVLC_CONTRIB_LICENSE
=
g
while
[
$#
-gt
0
]
;
do
case
$1
in
help
|
--help
)
echo
"Use -a to set the ARCH"
echo
"Use --release to build in release mode"
echo
"Use --license <l> to build contribs with license l"
echo
" g: GPLv3 (default)"
echo
" l: LGPLv3 + ad-clauses"
echo
" a: LGPLv2 + ad-clauses"
exit
1
;;
a|-a
)
...
...
@@ -30,6 +36,10 @@ while [ $# -gt 0 ]; do
AVLC_RELEASE
=
1
LIBVLC_RELEASE
=
"--release"
;;
--license
)
AVLC_CONTRIB_LICENSE
=
$2
shift
;;
--package-contribs
)
AVLC_MAKE_PREBUILT_CONTRIBS
=
1
LIBVLC_PACKAGE_CONTRIBS
=
"--package-contribs"
...
...
@@ -265,7 +275,7 @@ avlc_pkgconfig()
avlc_build
()
{
$LIBVLCJNI_SRC_DIR
/buildsystem/build-libvlc.sh
-a
$ANDROID_ABI
$LIBVLC_RELEASE
$LIBVLC_PACKAGE_CONTRIBS
$LIBVLC_PREBUILT_CONTRIBS
$LIBVLCJNI_SRC_DIR
/buildsystem/build-libvlc.sh
-a
$ANDROID_ABI
$LIBVLC_RELEASE
$LIBVLC_PACKAGE_CONTRIBS
$LIBVLC_PREBUILT_CONTRIBS
--license
$AVLC_CONTRIB_LICENSE
if
[
"
$AVLC_BUILD_JNI
"
=
"1"
]
;
then
$LIBVLCJNI_SRC_DIR
/buildsystem/build-libvlcjni.sh
-a
$ANDROID_ABI
$LIBVLC_RELEASE
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment