From 368542b8356038593c4d394d87ee086ef65a6da3 Mon Sep 17 00:00:00 2001 From: Stefan Hajnoczi Date: Tue, 27 Mar 2012 08:26:18 +0100 Subject: configure: fix mingw32 libs_qga typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's typical to prepend or append parameters to an argument string so that other places in ./configure can add parameters without clobbering the string. In the mingw32 libs_qga case there is a typo "$lib_qga" instead of "$libs_qga". Signed-off-by: Stefan Hajnoczi Reviewed-by: Andreas Färber --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 4b3adc9..c0a542b 100755 --- a/configure +++ b/configure @@ -526,7 +526,7 @@ EOF bindir="\${prefix}" sysconfdir="\${prefix}" confsuffix="" - libs_qga="-lws2_32 -lwinmm -lpowrprof $lib_qga" + libs_qga="-lws2_32 -lwinmm -lpowrprof $libs_qga" fi werror="" -- cgit v1.1 From 94b4fefae6aa8ee7739b2b9ad6ef14a07baf78be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Vilanova?= Date: Mon, 2 Apr 2012 14:49:44 +0200 Subject: configure: Link QEMU against 'liburcu-bp' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This library is needed when using 'ust/tracepoint.h'. Signed-off-by: Harsh Prateek Bora Signed-off-by: Lluís Vilanova Signed-off-by: Stefan Hajnoczi --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index c0a542b..319355b 100755 --- a/configure +++ b/configure @@ -2672,7 +2672,7 @@ if test "$trace_backend" = "ust"; then int main(void) { return 0; } EOF if compile_prog "" "" ; then - LIBS="-lust $LIBS" + LIBS="-lust -lurcu-bp $LIBS" else echo echo "Error: Trace backend 'ust' missing libust header files" -- cgit v1.1 From c9a2e37c7d70e1b1f11997f7ecab202393bff9fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Vilanova?= Date: Mon, 2 Apr 2012 14:49:49 +0200 Subject: configure: Link qga against UST tracing related libraries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Harsh Prateek Bora Signed-off-by: Lluís Vilanova Signed-off-by: Stefan Hajnoczi --- configure | 1 + 1 file changed, 1 insertion(+) (limited to 'configure') diff --git a/configure b/configure index 319355b..520bd93 100755 --- a/configure +++ b/configure @@ -2673,6 +2673,7 @@ int main(void) { return 0; } EOF if compile_prog "" "" ; then LIBS="-lust -lurcu-bp $LIBS" + libs_qga="-lust -lurcu-bp $libs_qga" else echo echo "Error: Trace backend 'ust' missing libust header files" -- cgit v1.1