diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2013-02-22 18:14:28 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-03-05 17:51:51 +0100 |
| commit | 3c33ea9640758bb625e110a77673e5abfd184e54 (patch) | |
| tree | 0c71cdaac3b349f48e5fa82eefe60e28796adc88 | |
| parent | cb1b83e740384b4e0d950f3d7c81c02b8ce86c2e (diff) | |
| download | focaccia-qemu-3c33ea9640758bb625e110a77673e5abfd184e54.tar.gz focaccia-qemu-3c33ea9640758bb625e110a77673e5abfd184e54.zip | |
iscsi: look for pkg-config file too
Due to library conflicts, Fedora will have to put libiscsi in /usr/lib/iscsi. Simplify configuration by using a pkg-config file. The Fedora package will distribute one, and the patch to add it has been sent to upstream libiscsi as well. Cc: qemu-stable@nongnu.org Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
| -rwxr-xr-x | configure | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure b/configure index 2f98c5a242..a9a7c9971b 100755 --- a/configure +++ b/configure @@ -2803,7 +2803,13 @@ if test "$libiscsi" != "no" ; then #include <iscsi/iscsi.h> int main(void) { iscsi_unmap_sync(NULL,0,0,0,NULL,0); return 0; } EOF - if compile_prog "" "-liscsi" ; then + if $pkg_config --atleast-version=1.7.0 libiscsi --modversion >/dev/null 2>&1; then + libiscsi="yes" + libiscsi_cflags=$($pkg_config --cflags libiscsi 2>/dev/null) + libiscsi_libs=$($pkg_config --libs libiscsi 2>/dev/null) + CFLAGS="$CFLAGS $libiscsi_cflags" + LIBS="$LIBS $libiscsi_libs" + elif compile_prog "" "-liscsi" ; then libiscsi="yes" LIBS="$LIBS -liscsi" else |