From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37073) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TC4y9-0002q5-6O for qemu-devel@nongnu.org; Thu, 13 Sep 2012 04:40:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TC4y4-0007QB-NO for qemu-devel@nongnu.org; Thu, 13 Sep 2012 04:40:17 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39348) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TC4y4-0007PK-FK for qemu-devel@nongnu.org; Thu, 13 Sep 2012 04:40:12 -0400 From: Gerd Hoffmann Date: Thu, 13 Sep 2012 10:39:51 +0200 Message-Id: <1347525600-28220-6-git-send-email-kraxel@redhat.com> In-Reply-To: <1347525600-28220-1-git-send-email-kraxel@redhat.com> References: <1347525600-28220-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 05/14] configure: usbredir fixes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Hans de Goede , Michael Tokarev , Gerd Hoffmann , Aurelien Jarno From: Aurelien Jarno usbredir is only used by system emulation, so add the libraries to libs_softmmu instead of LIBS. Cc: Michael Tokarev Cc: Gerd Hoffmann Signed-off-by: Aurelien Jarno Signed-off-by: Hans de Goede Signed-off-by: Gerd Hoffmann --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 7656c32..e42c812 100755 --- a/configure +++ b/configure @@ -2763,7 +2763,7 @@ if test "$usb_redir" != "no" ; then usb_redir_cflags=$($pkg_config --cflags libusbredirparser 2>/dev/null) usb_redir_libs=$($pkg_config --libs libusbredirparser 2>/dev/null) QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags" - LIBS="$LIBS $usb_redir_libs" + libs_softmmu="$libs_softmmu $usb_redir_libs" else if test "$usb_redir" = "yes"; then feature_not_found "usb-redir" -- 1.7.1