[Qemu-devel] [PATCH] configure: fix seccomp check

2012-09-06 Thread Yann E. MORIN
Currently, if libseccomp is missing but the user explicitly requested seccomp support using --enable-seccomp, configure silently ignores the situation and disables seccomp support. This is unlike all other tests that explicitly fail in such situation. Fix that. Signed-off-by: "Yann E.

Re: [Qemu-devel] [PATCH 0/2 v3] Fix static linking for cURL and SDL

2012-09-03 Thread Yann E. MORIN
Peter, All, On Monday 03 September 2012 18:38:48 Peter Maydell wrote: > On 3 September 2012 17:28, Yann E. MORIN wrote: > > On Monday 03 September 2012 17:44:51 Peter Maydell wrote: > >> Personally I think it might indeed be a good idea to just say > >> "staticall

Re: [Qemu-devel] [PATCH 0/2 v3] Fix static linking for cURL and SDL

2012-09-03 Thread Yann E. MORIN
binary - a VM image - a script that users can simply drop anywhere they want (without needing root access) and run the VM, without requiring them to install a myriad packages, especially on older distros that may lack

[Qemu-devel] [PATCH 1/2] configure: fix detection for cURL libs when static linking

2012-09-02 Thread Yann E. MORIN
use either --libs for pkg-config (--static is already taken care of in the wrapper), or $QEMU_XXX_CONFIG_LIBS_FLAGS for curl-config. Signed-off-by: "Yann E. MORIN" Reviewed-by: Stefan Hajnoczi --- configure |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/c

[Qemu-devel] [PATCH 2/2] configure: fix detection for SDL libs when static linking

2012-09-02 Thread Yann E. MORIN
-config or sdl-config, as checked just above. Signed-off-by: "Yann E. MORIN" Reviewed-by: Stefan Hajnoczi --- configure |8 +++- 1 files changed, 3 insertions(+), 5 deletions(-) diff --git a/configure b/configure index 67c9238..c5888fa 100755 --- a/configure +++ b/configure

[Qemu-devel] [PATCH 0/2 v3] Fix static linking for cURL and SDL

2012-09-02 Thread Yann E. MORIN
qemu-devel and cc qemu-trivial (Peter Maydell, Stefan) - fix type in the name of the new variable Changes since v1: - drop the spice fix, it is not needed (bad env locally) - drop the added --static to calls to pkg-config, as it's already in the wrapper (Stefan Hajnoczi) Regards, Yann E. MORIN.