[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r1590: Add a check for zlib.h to our configure.in. (This, of course (trunk)
Author: edmanm
Date: 2007-01-15 01:18:18 -0500 (Mon, 15 Jan 2007)
New Revision: 1590
Modified:
trunk/configure.in
Log:
Add a check for zlib.h to our configure.in. (This, of course, doesn't fix
the Windows build problems.)
Modified: trunk/configure.in
===================================================================
--- trunk/configure.in 2007-01-15 05:57:42 UTC (rev 1589)
+++ trunk/configure.in 2007-01-15 06:18:18 UTC (rev 1590)
@@ -22,6 +22,10 @@
done
])
+# Make sure we have a zlib.h available
+AC_CHECK_HEADERS(zlib.h, ,
+ AC_MSG_ERROR(zlib.h not found. Vidalia requires zlib to build. You may need to install a zlib development package.))
+
AC_MSG_CHECKING([for Qt >= 4.1.0])
for path in $QTPATHS; do
# "qmake" is sometimes spelled "qmake-qt4"