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
6ed4aff4
Commit
6ed4aff4
authored
Sep 21, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
python/build/libs.py: remove flac, switch to Meson wrap
parent
e5254655
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
19 additions
and
15 deletions
+19
-15
build.py
android/build.py
+0
-1
meson.build
meson.build
+3
-0
libs.py
python/build/libs.py
+0
-12
meson.build
src/lib/xiph/meson.build
+3
-1
.gitignore
subprojects/.gitignore
+1
-0
flac.wrap
subprojects/flac.wrap
+12
-0
build.py
win32/build.py
+0
-1
No files found.
android/build.py
View file @
6ed4aff4
...
...
@@ -151,7 +151,6 @@ thirdparty_libs = [
libmpdclient
,
libogg
,
opus
,
flac
,
libid3tag
,
libmodplug
,
wildmidi
,
...
...
meson.build
View file @
6ed4aff4
...
...
@@ -13,6 +13,7 @@ project(
# If we build those libraries as Meson subproject, they shall be
# linked statically into the MPD executable.
'expat:default_library=static',
'flac:default_library=static',
'fmt:default_library=static',
'gtest:default_library=static',
'sqlite3:default_library=static',
...
...
@@ -21,6 +22,8 @@ project(
# Not interested in compiler warnings from subprojects.
'expat:werror=false',
'expat:warning_level=0',
'flac:werror=false',
'flac:warning_level=0',
'fmt:warning_level=0',
'gtest:warning_level=0',
'sqlite3:warning_level=0',
...
...
python/build/libs.py
View file @
6ed4aff4
...
...
@@ -42,18 +42,6 @@ opus = AutotoolsProject(
cppflags
=
'-DOPUS_EXPORT='
,
)
flac
=
AutotoolsProject
(
'http://downloads.xiph.org/releases/flac/flac-1.3.3.tar.xz'
,
'213e82bd716c9de6db2f98bcadbc4c24c7e2efe8c75939a1a84e28539c4e1748'
,
'lib/libFLAC.a'
,
[
'--disable-shared'
,
'--enable-static'
,
'--disable-xmms-plugin'
,
'--disable-cpplibs'
,
'--disable-doxygen-docs'
,
],
subdirs
=
[
'include'
,
'src/libFLAC'
],
)
zlib
=
ZlibProject
(
'http://zlib.net/zlib-1.2.11.tar.xz'
,
'4ff941449631ace0d4d203e3483be9dbc9da454084111f97ea0a2114e19bf066'
,
...
...
src/lib/xiph/meson.build
View file @
6ed4aff4
libflac_dep = dependency('flac', version: '>= 1.2', required: get_option('flac'))
libflac_dep = dependency('flac', version: '>= 1.2',
fallback: ['flac', 'flac_dep'],
required: get_option('flac'))
libopus_dep = dependency('opus', required: get_option('opus'))
if get_option('tremor').enabled()
...
...
subprojects/.gitignore
View file @
6ed4aff4
/packagecache/
/expat-*/
/flac-*/
/fmt-*/
/googletest-*/
/sqlite-*/
...
...
subprojects/flac.wrap
0 → 100644
View file @
6ed4aff4
[wrap-file]
directory = flac-1.3.3
source_url = https://github.com/xiph/flac/archive/refs/tags/1.3.3.tar.gz
source_filename = 1.3.3.tar.gz
source_hash = 668cdeab898a7dd43cf84739f7e1f3ed6b35ece2ef9968a5c7079fe9adfe1689
patch_url = https://wrapdb.mesonbuild.com/v1/projects/flac/1.3.3/1/get_zip
patch_filename = flac-1.3.3-1-wrap.zip
patch_hash = bcd79061d1d29f8871646a356eb15ee2b6bacdc960594f584dcd4f90d7e0d4dd
[provide]
flac = flac_dep
win32/build.py
View file @
6ed4aff4
...
...
@@ -94,7 +94,6 @@ thirdparty_libs = [
libmpdclient
,
libogg
,
opus
,
flac
,
zlib
,
libid3tag
,
liblame
,
...
...
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