* [Qemu-devel] Minor correction in configure script
@ 2006-08-02 16:47 Sebastien Alaiwan
0 siblings, 0 replies; only message in thread
From: Sebastien Alaiwan @ 2006-08-02 16:47 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 324 bytes --]
Hi developpers,
I've been building qemu more than a dozen times until now, and I've
always been annoyed by the lack for a check for zlib during the
configure stage. It's not a great patch but it'll avoid the build
process to fail when zlib.h is not present.
If you use it, please tell me! :-)
Cheers,
Sebastien Alaiwan
[-- Attachment #2: qemu-configure-zlib-check --]
[-- Type: text/plain, Size: 528 bytes --]
diff -Naur qemu-0.8.2/configure qemu-0.8.2-patched/configure
--- qemu-0.8.2/configure 2006-07-22 19:23:34.000000000 +0200
+++ qemu-0.8.2-patched/configure 2006-08-02 18:41:04.000000000 +0200
@@ -442,6 +442,21 @@
fi
##########################################
+# zlib probe
+
+cat > $TMPC <<EOF
+#include <zlib.h>
+int main(){return 0;}
+EOF
+$cc -o $TMPO $TMPC 1>/dev/null 2>&1
+if [ ! $? = 0 ]; then
+ echo "zlib not found!"
+ exit 1;
+fi
+
+
+
+##########################################
# SDL probe
sdl_too_old=no
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-08-02 16:47 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-02 16:47 [Qemu-devel] Minor correction in configure script Sebastien Alaiwan
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.