diff mbox

[20/20] Add sparse to new feature convention

Message ID 140c8ca76d87ba7002bd2e5e7b83fd4aaa6ac522.1250093910.git.quintela@redhat.com
State Superseded
Headers show

Commit Message

Juan Quintela Aug. 12, 2009, 4:29 p.m. UTC
Once there, move to a proper test to see if we are going to use it or not

Signed-off-by: Juan Quintela <quintela@redhat.com>
---
 configure |   19 ++++++++++++++-----
 1 files changed, 14 insertions(+), 5 deletions(-)
diff mbox

Patch

diff --git a/configure b/configure
index 009ecef..3dab9ac 100755
--- a/configure
+++ b/configure
@@ -189,6 +189,7 @@  kvm=""
 nptl=""
 pthread=""
 sdl=""
+sparse="no"
 vde=""
 vnc_tls=""
 vnc_sasl=""
@@ -197,7 +198,6 @@  xen=""
 gprof="no"
 debug_tcg="no"
 debug="no"
-sparse="no"
 strip_opt="yes"
 bigendian="no"
 mingw32="no"
@@ -711,10 +711,6 @@  echo "NOTE: The object files are built at the place where configure is launched"
 exit 1
 fi

-if test ! -x "$(which cgcc 2>/dev/null)"; then
-    sparse="no"
-fi
-
 #
 # Solaris specific configure tool chain decisions
 #
@@ -922,6 +918,19 @@  EOF
 fi

 ##########################################
+# Sparse probe
+if test "$sparse" != "no" ; then
+  if test -x "$(which cgcc 2>/dev/null)"; then
+    sparse=yes
+  else
+    if test "$sparse" = "yes" ; then
+      feature_not_found "sparse"
+    fi
+    sparse=no
+  fi
+fi
+
+##########################################
 # SDL probe

 sdl_too_old=no