diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-04-18 13:01:09 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-05-17 11:06:01 -0700 |
commit | 35ce99dc01804f859b2ceb29eb46d5328674b74a (patch) | |
tree | db9e1c53ee1873b7c268d7fd85024d130117db00 | |
parent | dda951924d2d528d4b25c124a1766f9a6a1478dd (diff) |
meson: add a expat subproject
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | subprojects/expat.wrap | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 9202b84bb1..cfe4ecefd4 100644 --- a/meson.build +++ b/meson.build @@ -1021,7 +1021,7 @@ if with_amd_vk or with_gallium_radeonsi or with_gallium_r600 or with_gallium_ope else dep_elf = null_dep endif -dep_expat = dependency('expat') +dep_expat = dependency('expat', fallback : ['expat', 'expat_dep']) # this only exists on linux so either this is linux and it will be found, or # its not linux and and wont dep_m = cc.find_library('m', required : false) diff --git a/subprojects/expat.wrap b/subprojects/expat.wrap new file mode 100644 index 0000000000..0b7c53e54d --- /dev/null +++ b/subprojects/expat.wrap @@ -0,0 +1,10 @@ +[wrap-file] +directory = expat-2.2.5 + +source_url = https://github.com/libexpat/libexpat/releases/download/R_2_2_5/expat-2.2.5.tar.bz2 +source_filename = expat-2.2.5.tar.bz2 +source_hash = d9dc32efba7e74f788fcc4f212a43216fc37cf5f23f4c2339664d473353aedf6 + +patch_url = https://wrapdb.mesonbuild.com/v1/projects/expat/2.2.5/4/get_zip +patch_filename = expat-2.2.5-4-wrap.zip +patch_hash = 25748839be2bbdd2ff586d1a05aa6fc37aeada75c78416df6e8347a6321abaac |