Re: [Qemu-devel] [PATCH] configure: allow disabling pixman if not needed

2012-12-23 Thread Anthony Liguori
Robert Schiele writes: > When we build neither any system emulation targets nor the tools there > is actually no need for pixman library. In that case do not enforce > presence of that library on the system. > > Signed-off-by: Robert Schiele Applied. Thanks. Regards, Anthony Liguori > --- >

Re: [Qemu-devel] [PATCH] configure: allow disabling pixman if not needed

2012-12-04 Thread Andreas Färber
Am 04.12.2012 16:58, schrieb Robert Schiele: > When we build neither any system emulation targets nor the tools there > is actually no need for pixman library. In that case do not enforce > presence of that library on the system. > > Signed-off-by: Robert Schiele Reviewed-by: Andreas Färber T

Re: [Qemu-devel] [PATCH] configure: allow disabling pixman if not needed

2012-12-04 Thread Peter Maydell
On 4 December 2012 15:58, Robert Schiele wrote: > diff --git a/target-unicore32/helper.c b/target-unicore32/helper.c > index a9e226b..3e0df33 100644 > --- a/target-unicore32/helper.c > +++ b/target-unicore32/helper.c > @@ -13,7 +13,9 @@ > #include "gdbstub.h" > #include "helper.h" > #include "h

[Qemu-devel] [PATCH] configure: allow disabling pixman if not needed

2012-12-04 Thread Robert Schiele
When we build neither any system emulation targets nor the tools there is actually no need for pixman library. In that case do not enforce presence of that library on the system. Signed-off-by: Robert Schiele --- This allows to reduce dependencies in case you build only user emulation targets.