diff options
author | Tim Walker <[email protected]> | 2018-01-04 01:24:51 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2018-01-14 15:36:17 +0000 |
commit | 61dd23ba07f06ed2c2f8f06ce753ab40fc5e33cb (patch) | |
tree | 72ff2a28588ac06ffc34c60cf895f909e712fe31 /contrib/libxml2 | |
parent | 96909e496c1655580cfb93653243e3342d6d6988 (diff) |
contrib/libxml2: explicitly disable LZMA support.
Fix possible build failure, when liblzma
(xz) is found in pkg-config's search path.
Diffstat (limited to 'contrib/libxml2')
-rw-r--r-- | contrib/libxml2/module.defs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/libxml2/module.defs b/contrib/libxml2/module.defs index bf17500d9..2e5e7cdcb 100644 --- a/contrib/libxml2/module.defs +++ b/contrib/libxml2/module.defs @@ -6,10 +6,12 @@ LIBXML2.FETCH.url = https://download.handbrake.fr/handbrake/contrib/libxml2- LIBXML2.FETCH.url += https://download.videolan.org/pub/contrib/libxml2/libxml2-2.9.4.tar.gz LIBXML2.FETCH.sha256 = ffb911191e509b966deb55de705387f14156e1a56b21824357cdf0053233633c +# We don't need LZMA support +LIBXML2.CONFIGURE.extra = --without-lzma + # The Python components do not build on MinGW due to the lack of a select() call # in the MinGW environment. -LIBXML2.CONFIGURE.extra = \ - --without-python --without-threads +LIBXML2.CONFIGURE.extra += --without-python --without-threads ifeq (1-msys,$(BUILD.cross)-$(HOST.system)) LIBXML2.CONFIGURE.args.build = --build=$(BUILD.machine)-unknown-linux-gnu |