[Box Backup-commit] COMMIT r3016 - box/trunk/infrastructure/mingw

subversion at boxbackup.org subversion at boxbackup.org
Sun Oct 9 22:51:22 BST 2011


Author: chris
Date: 2011-10-09 22:51:22 +0100 (Sun, 09 Oct 2011)
New Revision: 3016

Modified:
   box/trunk/infrastructure/mingw/configure.sh
Log:
Check for libz.dll.a installed in new location before configuring for
MinGW.


Modified: box/trunk/infrastructure/mingw/configure.sh
===================================================================
--- box/trunk/infrastructure/mingw/configure.sh	2011-10-09 11:24:45 UTC (rev 3015)
+++ box/trunk/infrastructure/mingw/configure.sh	2011-10-09 21:51:22 UTC (rev 3016)
@@ -16,6 +16,11 @@
 	exit 2
 fi
 
+if [ ! -r "$DEP_PATH/sys-root/mingw/lib/libz.dll.a" ]; then
+	echo "Error: upgrade your Cygwin mingw-zlib-devel package" >&2
+	exit 2
+fi
+
 if [ ! -x "configure" ]; then
 	if ! ./bootstrap; then
 		echo "Error: bootstrap failed, aborting." >&2




More information about the Boxbackup-commit mailing list