Open danj2k opened 5 months ago
Answering my own question, it seems like it just needed an extra line to add --enable-libxml2
to the CONFIGURE_OPTIONS
:
if build "libxml2" "snapshot"; then
download "ftp://xmlsoft.org/libxml2/libxml2-git-snapshot.tar.gz" "snapshot.tar.gz"
execute execute ./configure --prefix="${WORKSPACE}" --enable-static --disable-shared --disable-dependency-tracking --without-python
execute make -j $MJOBS
execute make install
build_done "libxml2" "snapshot"
fi
CONFIGURE_OPTIONS+=("--enable-libxml2")
Is there a way to modify this build script to include libxml2 for DASH support in ffmpeg?
I tried adding the libxml2 related code fragment from #128 but this did not work.
It seemed like it built it as I saw this in the output:
But when trying the resulting ffmpeg binary I just get:
Can anyone suggest what I need to add or change to make this work?