This patch consolodates Solaris configuration (it had
been in two places) , as well as adds support for Solaris 10 
for the kqemu module.

diff -ruN qemu-ORIG/configure qemu/configure
--- qemu-ORIG/configure	2007-01-31 07:10:07.000000000 -0500
+++ qemu/configure	2007-02-10 07:01:39.149388000 -0500
@@ -133,8 +133,15 @@
 OS_CFLAGS="-mdynamic-no-pic"
 ;;
 SunOS)
-solaris="yes"
-;;
+    solaris="yes"
+    make="gmake"
+    install="ginstall"
+    solarisrev=`uname -r | cut -f2 -d.`
+    if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
+        if test "$solarisrev" -ge 10 ; then
+            kqemu="yes"
+        fi
+    ;;
 *)
 oss="yes"
 linux="yes"
@@ -151,17 +158,6 @@
   fi
 fi
 
-if [ "$solaris" = "yes" ] ; then
-    make="gmake"
-    install="ginstall"
-    solarisrev=`uname -r | cut -f2 -d.`
-    if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
-        if test "$solarisrev" -gt 10 ; then
-            kqemu="yes"
-        fi
-    fi
-fi
-
 # find source path
 source_path=`dirname "$0"`
 if [ -z "$source_path" ]; then
_______________________________________________
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel

Reply via email to