qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] Make configure find uuid functions in Mac OS X by looking i


From: C.W. Betts
Subject: [Qemu-devel] Make configure find uuid functions in Mac OS X by looking into libSystem.B
Date: Sat, 3 Jul 2010 21:17:50 -0600

Make configure find uuid functions in Mac OS X by looking into libSystem.B

Mac OS X consolidates many smaller libraries into libSystem.B.dylib. libuuid is 
one of these.  This patch makes it so that configure doesn't look for a 
non-existant libuuid.dylib, but look in libSystem for the uuid functions.
Signed off by C.W. Betts <address@hidden>
---
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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]