FFmpeg-Builds/scripts.d/25-xz.sh
BtbN bce41a5cce Disable liblzma/xz symbol versioning
Does not make a whole lot of sense for static builds to begin with,
and since 913ddc5572
it's outright broken for unknown reasons:

ld: libavcodec/libavcodec.so.59: version node not found for symbol lzma_get_progress@XZ_5.2.2
ld: failed to set dynamic section sizes: bad value
2022-10-06 14:33:36 +02:00

45 lines
795 B
Bash
Executable file

#!/bin/bash
SCRIPT_REPO="https://github.com/xz-mirror/xz.git"
SCRIPT_COMMIT="508a44372c5b0dede8863fd0d358d4a9d8645c95"
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" xz
cd xz
./autogen.sh --no-po4a
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-symbol-versions
--disable-shared
--enable-static
--with-pic
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}"
make -j$(nproc)
make install
}
ffbuild_configure() {
echo --enable-lzma
}
ffbuild_unconfigure() {
echo --disable-lzma
}