From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=51457 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OOFM8-0000JH-AM for qemu-devel@nongnu.org; Mon, 14 Jun 2010 15:30:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OOFM7-0002qu-21 for qemu-devel@nongnu.org; Mon, 14 Jun 2010 15:30:00 -0400 Received: from mail-iw0-f173.google.com ([209.85.214.173]:48593) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OOFM6-0002qc-OD for qemu-devel@nongnu.org; Mon, 14 Jun 2010 15:29:58 -0400 Received: by iwn10 with SMTP id 10so4505110iwn.4 for ; Mon, 14 Jun 2010 12:29:57 -0700 (PDT) Message-ID: <4C168335.8030100@codemonkey.ws> Date: Mon, 14 Jun 2010 14:29:57 -0500 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] Fwd: [PATCH 1/4] Make configure find uuid functions in Mac OS X by looking into libSystem.B References: <1274035656-10070-1-git-send-email-computers57@hotmail.com> In-Reply-To: Content-Type: multipart/alternative; boundary="------------080904070405050403050706" List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "C.W. Betts" Cc: qemu-devel@nongnu.org This is a multi-part message in MIME format. --------------080904070405050403050706 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 06/03/2010 04:05 PM, C.W. Betts wrote: > Since this didn't seem to get to the mailing list, I'm forwarding it. It's lacking a Signed-off-by and as a quoted message, it's not possible to apply it. Regards, Anthony Liguori > Begin forwarded message: > >> *From: *"C.W. Betts" > > >> *Date: *May 16, 2010 12:47:33 PM MDT >> *To: *qemu-devel@nongnu.org >> *Cc: *"C.W. Betts" > > >> *Subject: **[PATCH 1/4] Make configure find uuid functions in Mac OS >> X by looking into libSystem.B* >> >> --- >> configure | 6 +++++- >> 1 files changed, 5 insertions(+), 1 deletions(-) >> >> diff --git a/configure b/configure >> index 966cd7d..ecc3317 100755 >> --- a/configure >> +++ b/configure >> @@ -1198,7 +1198,11 @@ fi >> ########################################## >> # uuid_generate() probe, used for vdi block driver >> if test "$uuid" != "no" ; then >> - uuid_libs="-luuid" >> + if test "$darwin" == "yes"; then >> + uuid_libs="" >> + else >> + uuid_libs="-luuid" >> + fi >> cat > $TMPC << EOF >> #include >> int main(void) >> -- >> 1.6.5.5 >> >> > --------------080904070405050403050706 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 06/03/2010 04:05 PM, C.W. Betts wrote:
Since this didn't seem to get to the mailing list, I'm forwarding it.

It's lacking a Signed-off-by and as a quoted message, it's not possible to apply it.

Regards,

Anthony Liguori

Begin forwarded message:

From: "C.W. Betts" <computers57@hotmail.com>
Date: May 16, 2010 12:47:33 PM MDT
Cc: "C.W. Betts" <computers57@hotmail.com>
Subject: [PATCH 1/4] Make configure find uuid functions in Mac OS X by looking into libSystem.B

---
configure |    6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/configure b/configure
index 966cd7d..ecc3317 100755
--- a/configure
+++ b/configure
@@ -1198,7 +1198,11 @@ fi
##########################################
# uuid_generate() probe, used for vdi block driver
if test "$uuid" != "no" ; then
-  uuid_libs="-luuid"
+  if test "$darwin" == "yes"; then
+    uuid_libs=""
+  else
+    uuid_libs="-luuid"
+  fi
  cat > $TMPC << EOF
#include <uuid/uuid.h>
int main(void)
--
1.6.5.5




--------------080904070405050403050706--