From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sheng Yang Subject: [PATCH 1/1] Fix unable to detect libpci Date: Fri, 13 Nov 2009 14:22:34 +0800 Message-ID: <1258093354-5048-1-git-send-email-sheng@linux.intel.com> Cc: Marcelo Tosatti , kvm@vger.kernel.org, Sheng Yang , Juan Quintela To: Avi Kivity Return-path: Received: from mga09.intel.com ([134.134.136.24]:9524 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753332AbZKMGXa (ORCPT ); Fri, 13 Nov 2009 01:23:30 -0500 Sender: kvm-owner@vger.kernel.org List-ID: commit 75fe7882 "Test for libpci, not only for header" compile a libpci test file. But the pciutils with defined PCI_COMPRESSED_IDS also need zlib when compile, otherwise the compile would fail, and detection fail then CC: Juan Quintela Signed-off-by: Sheng Yang --- configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 9d3b840..5b08367 100755 --- a/configure +++ b/configure @@ -1477,8 +1477,8 @@ if test $kvm_cap_device_assignment = "yes" ; then #endif int main(void) { struct pci_access a; pci_init(&a); return 0; } EOF - if compile_prog "" "-lpci" ; then - libs_softmmu="-lpci $libs_softmmu" + if compile_prog "" "-lpci -lz" ; then + libs_softmmu="-lpci -lz $libs_softmmu" else echo echo "Error: libpci check failed" -- 1.5.4.5