Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
aef0535c
Commit
aef0535c
authored
3 years ago
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
python/build/libs.py: remove libvorbis, switch to Meson wrap
parent
6b1d0cb0
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
20 additions
and
13 deletions
+20
-13
build.py
android/build.py
+0
-1
meson.build
meson.build
+2
-0
libs.py
python/build/libs.py
+0
-10
meson.build
src/lib/xiph/meson.build
+3
-1
.gitignore
subprojects/.gitignore
+1
-0
vorbis.wrap
subprojects/vorbis.wrap
+14
-0
build.py
win32/build.py
+0
-1
No files found.
android/build.py
View file @
aef0535c
...
...
@@ -153,7 +153,6 @@ from build.libs import *
thirdparty_libs
=
[
libmpdclient
,
libogg
,
libvorbis
,
opus
,
flac
,
libid3tag
,
...
...
This diff is collapsed.
Click to expand it.
meson.build
View file @
aef0535c
...
...
@@ -15,11 +15,13 @@ project(
'fmt:default_library=static',
'gtest:default_library=static',
'sqlite3:default_library=static',
'vorbis:default_library=static',
# Not interested in compiler warnings from subprojects.
'fmt:warning_level=0',
'gtest:warning_level=0',
'sqlite3:warning_level=0',
'vorbis:warning_level=0',
],
license: 'GPLv2+',
)
...
...
This diff is collapsed.
Click to expand it.
python/build/libs.py
View file @
aef0535c
...
...
@@ -28,16 +28,6 @@ libogg = CmakeProject(
],
)
libvorbis
=
CmakeProject
(
'http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.7.tar.xz'
,
'b33cc4934322bcbf6efcbacf49e3ca01aadbea4114ec9589d1b1e9d20f72954b'
,
'lib/libvorbis.a'
,
[
'-DBUILD_SHARED_LIBS=OFF'
,
'-DINSTALL_CMAKE_PACKAGE_MODULE=OFF'
,
],
)
opus
=
AutotoolsProject
(
'https://archive.mozilla.org/pub/opus/opus-1.3.1.tar.gz'
,
'65b58e1e25b2a114157014736a3d9dfeaad8d41be1c8179866f144a2fb44ff9d'
,
...
...
This diff is collapsed.
Click to expand it.
src/lib/xiph/meson.build
View file @
aef0535c
...
...
@@ -5,7 +5,9 @@ if get_option('tremor').enabled()
# no libvorbis if Tremor was explicitly enabled
libvorbis_dep = dependency('', required: false)
else
libvorbis_dep = dependency('vorbis', required: get_option('vorbis'))
libvorbis_dep = dependency('vorbis',
fallback: ['vorbis', 'vorbis_dep'],
required: get_option('vorbis'))
endif
if libvorbis_dep.found()
...
...
This diff is collapsed.
Click to expand it.
subprojects/.gitignore
View file @
aef0535c
...
...
@@ -3,3 +3,4 @@
/fmt-*/
/googletest-*/
/sqlite-*/
/libvorbis-*/
This diff is collapsed.
Click to expand it.
subprojects/vorbis.wrap
0 → 100644
View file @
aef0535c
[wrap-file]
directory = libvorbis-1.3.5
source_url = http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.5.tar.xz
source_filename = libvorbis-1.3.5.tar.xz
source_hash = 54f94a9527ff0a88477be0a71c0bab09a4c3febe0ed878b24824906cd4b0e1d1
patch_url = https://wrapdb.mesonbuild.com/v1/projects/vorbis/1.3.5/7/get_zip
patch_filename = vorbis-1.3.5-7-wrap.zip
patch_hash = 7f4d3f9253925196461d52fd4553aad4468fd845560d1ff6c2eb6a012cf64fb0
[provide]
vorbis = vorbis_dep
vorbisfile = vorbisfile_dep
vorbisenc = vorbisenc_dep
This diff is collapsed.
Click to expand it.
win32/build.py
View file @
aef0535c
...
...
@@ -96,7 +96,6 @@ from build.libs import *
thirdparty_libs
=
[
libmpdclient
,
libogg
,
libvorbis
,
opus
,
flac
,
zlib
,
...
...
This diff is collapsed.
Click to expand it.
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