Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutchinson@novell.com>2007-03-07 04:29:43 +0300
committerMichael Hutchinson <mhutchinson@novell.com>2007-03-07 04:29:43 +0300
commite90eeefbf126e1115c18866743cedf82bf756535 (patch)
tree24b8aa1d794bbd6a890d10b88c22ca7f2be6a1ef /configure.in
parent1ff94a377dde1644b6afebc57dddd27eb2fb96b1 (diff)
2007-03-07 Michael Hutchinson <m.j.hutchinson@gmail.com>
* 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
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in9
1 files changed, 5 insertions, 4 deletions
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