From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: development@lists.ipfire.org Subject: [PATCH 5/6] qemu: disable sdl and documentation Date: Sun, 10 Nov 2019 13:03:01 +0000 Message-ID: <20191110130302.21867-5-jonatan.schlag@ipfire.org> In-Reply-To: <20191110130302.21867-1-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0593191130998394336==" List-Id: --===============0593191130998394336== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable A newer version of qemu does not build anymore with our version of sdl. I tried around a little bit and as I have not got a clue why we are using sdl (spice and remote access still works) I think we should disable it. I disabled the generation of the documentation as well but this switch does not seem to have any effect. Signed-off-by: Jonatan Schlag --- lfs/qemu | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lfs/qemu b/lfs/qemu index d18b49cb3..9fdb6b7b6 100644 --- a/lfs/qemu +++ b/lfs/qemu @@ -82,7 +82,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && ./configure --prefix=3D/usr --sysconfdir=3D/etc \ --localstatedir=3D/var --enable-kvm --disable-bluez --disable-attr \ --target-list=3D"i386-linux-user x86_64-linux-user arm-linux-user i386-sof= tmmu x86_64-softmmu arm-softmmu" \ - --extra-cflags=3D"$(CFLAGS)" --enable-spice --enable-usb-redir --enable-se= ccomp + --extra-cflags=3D"$(CFLAGS)" --enable-spice --enable-usb-redir --enable-se= ccomp \ + --disable-docs --disable-sdl cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install =20 --=20 2.20.1 --===============0593191130998394336==--