From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:41279) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S3ice-0001i9-Vh for qemu-devel@nongnu.org; Sat, 03 Mar 2012 01:39:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S3icd-00040H-8D for qemu-devel@nongnu.org; Sat, 03 Mar 2012 01:39:16 -0500 Received: from mail-pz0-f46.google.com ([209.85.210.46]:40156) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S3icc-0003xf-VH for qemu-devel@nongnu.org; Sat, 03 Mar 2012 01:39:15 -0500 Received: by mail-pz0-f46.google.com with SMTP id r28so3939725daj.33 for ; Fri, 02 Mar 2012 22:39:14 -0800 (PST) From: Ronnie Sahlberg Date: Sat, 3 Mar 2012 17:38:29 +1100 Message-Id: <1330756709-12781-2-git-send-email-ronniesahlberg@gmail.com> In-Reply-To: <1330756709-12781-1-git-send-email-ronniesahlberg@gmail.com> References: <1330756709-12781-1-git-send-email-ronniesahlberg@gmail.com> Subject: [Qemu-devel] [PATCH] Change library from libiscsi to libiscsiclient to match library rename in libiscsi List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, kwolf@redhat.com Cc: Ronnie Sahlberg Signed-off-by: Ronnie Sahlberg --- configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index fb0e18e..294c0c1 100755 --- a/configure +++ b/configure @@ -2503,9 +2503,9 @@ if test "$libiscsi" != "no" ; then #include int main(void) { iscsi_create_context(""); return 0; } EOF - if compile_prog "-Werror" "-liscsi" ; then + if compile_prog "-Werror" "-liscsiclient" ; then libiscsi="yes" - LIBS="$LIBS -liscsi" + LIBS="$LIBS -liscsiclient" else if test "$libiscsi" = "yes" ; then feature_not_found "libiscsi" -- 1.7.3.1