From e90eeefbf126e1115c18866743cedf82bf756535 Mon Sep 17 00:00:00 2001 From: Michael Hutchinson Date: Wed, 7 Mar 2007 01:29:43 +0000 Subject: 2007-03-07 Michael Hutchinson * configure.in: Error out if check for "zip" fails. Remove ENABLE_DESIGNERSUPP check as it should always be built now. svn path=/trunk/monodevelop/; revision=73862 --- configure.in | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 3ce8a36b08..bae7b92156 100644 --- a/configure.in +++ b/configure.in @@ -191,10 +191,8 @@ if test "x$enable_aspnet" = "xyes"; then PKG_CHECK_MODULES(XSP, xsp >= $XSP_VERSION xsp-2 >= $XSP2_VERSION) fi -AM_CONDITIONAL(ENABLE_ASPNET, test x$enable_aspnet = xyes) -AM_CONDITIONAL(ENABLE_DESIGNERSUPP, test x$enable_aspnet = xyes) - - +AM_CONDITIONAL(ENABLE_ASPNET, test x$enable_aspnet = xyes) + dnl ASP.NET visual designer addin JSCALL_REQUIRED_VERSION=0.0.2 AC_ARG_ENABLE(aspnetedit, @@ -239,6 +237,9 @@ if test "x$enable_aspnetedit" = "xyes"; then # get zip to create jar/xpi for chrome AC_PATH_PROG(ZIP, zip) + if test "x$ZIP" = "x" ; then + AC_MSG_ERROR([Can't find "zip" in your PATH]) + fi else #We still need to know where Mozilla is for launch scripts, even though we're not using JSCall# #Check pkg-config first -- cgit v1.2.3