qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [5456] Add a configure check for zlib (Ryota OZAKI).


From: Andrzej Zaborowski
Subject: [Qemu-devel] [5456] Add a configure check for zlib (Ryota OZAKI).
Date: Sat, 11 Oct 2008 09:56:05 +0000

Revision: 5456
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5456
Author:   balrog
Date:     2008-10-11 09:56:04 +0000 (Sat, 11 Oct 2008)

Log Message:
-----------
Add a configure check for zlib (Ryota OZAKI).

This patch makes configure check zlib devel files installed.
Current configure doesn't check that, so make will fail if they
are not installed.

Signed-off-by: Ryota Ozaki <address@hidden>

Modified Paths:
--------------
    trunk/configure

Modified: trunk/configure
===================================================================
--- trunk/configure     2008-10-11 09:33:03 UTC (rev 5455)
+++ trunk/configure     2008-10-11 09:56:04 UTC (rev 5456)
@@ -716,6 +716,23 @@
 fi
 
 ##########################################
+# zlib check
+
+cat > $TMPC << EOF
+#include <zlib.h>
+int main(void) { zlibVersion(); return 0; }
+EOF
+if $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC -lz 2> /dev/null ; then
+    :
+else
+    echo
+    echo "Error: zlib check failed"
+    echo "Make sure to have the zlib libs and headers installed."
+    echo
+    exit 1
+fi
+
+##########################################
 # SDL probe
 
 sdl_too_old=no






reply via email to

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