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
520028dc
Commit
520028dc
authored
Sep 21, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
python/build/libs.py: remove libexpat, switch to Meson wrap
parent
e98cef06
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
16 deletions
+16
-16
build.py
android/build.py
+0
-1
meson.build
meson.build
+3
-0
libs.py
python/build/libs.py
+0
-13
meson.build
src/lib/expat/meson.build
+3
-1
.gitignore
subprojects/.gitignore
+1
-0
expat.wrap
subprojects/expat.wrap
+9
-0
build.py
win32/build.py
+0
-1
No files found.
android/build.py
View file @
520028dc
...
...
@@ -162,7 +162,6 @@ thirdparty_libs = [
ffmpeg
,
openssl
,
curl
,
libexpat
,
libnfs
,
boost
,
]
...
...
meson.build
View file @
520028dc
...
...
@@ -12,12 +12,15 @@ project(
# If we build those libraries as Meson subproject, they shall be
# linked statically into the MPD executable.
'expat:default_library=static',
'fmt:default_library=static',
'gtest:default_library=static',
'sqlite3:default_library=static',
'vorbis:default_library=static',
# Not interested in compiler warnings from subprojects.
'expat:werror=false',
'expat:warning_level=0',
'fmt:warning_level=0',
'gtest:warning_level=0',
'sqlite3:warning_level=0',
...
...
python/build/libs.py
View file @
520028dc
...
...
@@ -416,19 +416,6 @@ curl = CmakeProject(
patches
=
'src/lib/curl/patches'
,
)
libexpat
=
CmakeProject
(
'https://github.com/libexpat/libexpat/releases/download/R_2_2_9/expat-2.2.9.tar.bz2'
,
'f1063084dc4302a427dabcca499c8312b3a32a29b7d2506653ecc8f950a9a237'
,
'lib/libexpat.a'
,
[
'-DEXPAT_BUILD_TOOLS=OFF'
,
'-DEXPAT_BUILD_EXAMPLES=OFF'
,
'-DEXPAT_BUILD_TESTS=OFF'
,
'-DEXPAT_SHARED_LIBS=OFF'
,
'-DEXPAT_BUILD_DOCS=OFF'
,
],
)
libnfs
=
AutotoolsProject
(
'https://github.com/sahlberg/libnfs/archive/libnfs-4.0.0.tar.gz'
,
'6ee77e9fe220e2d3e3b1f53cfea04fb319828cc7dbb97dd9df09e46e901d797d'
,
...
...
src/lib/expat/meson.build
View file @
520028dc
expat_dep = dependency('expat', required: get_option('expat'))
expat_dep = dependency('expat',
fallback: ['expat', 'expat_dep'],
required: get_option('expat'))
conf.set('ENABLE_EXPAT', expat_dep.found())
if not expat_dep.found()
subdir_done()
...
...
subprojects/.gitignore
View file @
520028dc
/packagecache/
/expat-*/
/fmt-*/
/googletest-*/
/sqlite-*/
...
...
subprojects/expat.wrap
0 → 100644
View file @
520028dc
[wrap-file]
directory = expat-2.2.9
source_url = https://github.com/libexpat/libexpat/releases/download/R_2_2_9/expat-2.2.9.tar.xz
source_filename = expat-2.2.9.tar.bz2
source_hash = 1ea6965b15c2106b6bbe883397271c80dfa0331cdf821b2c319591b55eadc0a4
patch_url = https://wrapdb.mesonbuild.com/v1/projects/expat/2.2.9/3/get_zip
patch_filename = expat-2.2.9-3-wrap.zip
patch_hash = e9aaace62e9a158b5e96f5c38c9f81f369179206acd87697653d777c0d3975d3
win32/build.py
View file @
520028dc
...
...
@@ -106,7 +106,6 @@ thirdparty_libs = [
gme
,
ffmpeg
,
curl
,
libexpat
,
libnfs
,
jack
,
boost
,
...
...
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