qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] PPC: Fail configure when libfdt is not available
@ 2011-10-18  0:18 Alexander Graf
  2011-10-18  6:45 ` Paolo Bonzini
                   ` (2 more replies)
  0 siblings, 3 replies; 15+ messages in thread
From: Alexander Graf @ 2011-10-18  0:18 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-ppc

We have several targets in the PPC tree now that basically require libfdt
to function properly, namely the pseries and the e500 targets. This dependency
will rather increase than decrease in the future, so I want to make sure
that people building shiny new 1.0 actually have libfdt installed to get
rid of a few ifdefs in the code.

Warning: This patch will likely make configure fail for people who don't
select their own --target-list, but don't have libfdt development packages
installed. However, we really need this new dependency to move on.

Signed-off-by: Alexander Graf <agraf@suse.de>
---
 configure |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/configure b/configure
index 3bdb556..ae0a872 100755
--- a/configure
+++ b/configure
@@ -3389,6 +3389,15 @@ case "$target_arch2" in
       fi
     fi
 esac
+if test "$fdt" != "yes" -a \( "$target_arch2" = "ppc" -o \
+        "$target_arch2" = "ppc64" -o "$target_arch2" = "ppcemb" \); then
+  echo
+  echo "Error: libfdt missing"
+  echo "The PowerPC target requires libfdt to work properly."
+  echo "Please make sure to have it and its development packages installed"
+  echo
+  exit 1
+fi
 if test "$target_arch2" = "ppc64" -a "$fdt" = "yes"; then
   echo "CONFIG_PSERIES=y" >> $config_target_mak
 fi
-- 
1.6.0.2

^ permalink raw reply related	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2011-10-24  2:22 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-18  0:18 [Qemu-devel] [PATCH] PPC: Fail configure when libfdt is not available Alexander Graf
2011-10-18  6:45 ` Paolo Bonzini
2011-10-18 19:26   ` Richard Henderson
2011-10-19  6:09     ` Paolo Bonzini
2011-10-18  8:55 ` Andreas Färber
2011-10-18  9:02   ` Alexander Graf
2011-10-18 18:30     ` Blue Swirl
2011-10-19  2:08       ` Alexander Graf
2011-10-18 11:37   ` [Qemu-devel] [Qemu-ppc] " David Gibson
2011-10-20 18:35     ` Gerd Hoffmann
2011-10-21  3:34       ` David Gibson
2011-10-21  7:11         ` Gerd Hoffmann
2011-10-21  7:34       ` Paolo Bonzini
2011-10-24  2:22         ` David Gibson
2011-10-18  9:47 ` [Qemu-devel] " Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).