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-09-22 03:39:59 +0400
committerMichael Hutchinson <mhutchinson@novell.com>2007-09-22 03:39:59 +0400
commit4e9e57e59df6fface30734beafe09535d84eac4f (patch)
tree5a17bee015779dc37e80303b348503dfee95c7a1 /configure.in
parent0766ab85e57f3e5c751fd5a452ab8ce58c0c7c8b (diff)
2007-09-22 Michael Hutchinson <mhutchinson@novell.com>
* configure.in: Enable ASP.NET project support by default, and fix quoting in database provider detection. svn path=/trunk/monodevelop/; revision=86185
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in16
1 files changed, 9 insertions, 7 deletions
diff --git a/configure.in b/configure.in
index f686bba4a8..e32f99aedd 100644
--- a/configure.in
+++ b/configure.in
@@ -220,18 +220,18 @@ else
enable_mysql="no (missing MySql.Data)"
fi
-AM_CONDITIONAL(ENABLE_POSTGRES, [test x$enable_postgres = xyes])
-AM_CONDITIONAL(ENABLE_MYSQL, [test x$enable_mysql = xyes])
-AM_CONDITIONAL(ENABLE_SQLITE, [test x$enable_sqlite = xyes])
-AM_CONDITIONAL(ENABLE_SQLSERVER, [test x$enable_sqlserver = xyes])
+AM_CONDITIONAL(ENABLE_POSTGRES, [test "x$enable_postgres" = "xyes"])
+AM_CONDITIONAL(ENABLE_MYSQL, [test "x$enable_mysql" = "xyes"])
+AM_CONDITIONAL(ENABLE_SQLITE, [test "x$enable_sqlite" = "xyes"])
+AM_CONDITIONAL(ENABLE_SQLSERVER, [test "x$enable_sqlserver" = "xyes"])
dnl ASP.NET project addin
XSP_VERSION=0.1
XSP2_VERSION=0.2
AC_ARG_ENABLE(aspnet,
AC_HELP_STRING([--enable-aspnet],
- [enable ASP.NET project support [default=no]]),
- enable_aspnet=yes, enable_aspnet=no)
+ [enable ASP.NET project support [default=yes]]),
+ enable_aspnet=${enableval}, enable_aspnet=yes)
if test "x$enable_aspnet" = "xyes"; then
PKG_CHECK_MODULES(XSP, xsp >= $XSP_VERSION xsp-2 >= $XSP2_VERSION)
@@ -296,7 +296,9 @@ AC_ARG_ENABLE(aspnetedit,
if test "x$enable_aspnet" = "xno"; then
enable_aspnetedit=no
- AC_MSG_WARN([Cannot enable AspNetEdit without ASP.NET project support.])
+ if test "x$enable_aspnetedit" = "xyes"; then
+ AC_MSG_WARN([Cannot enable AspNetEdit without ASP.NET project support.])
+ fi
fi
if test "x$enable_aspnetedit" = "xyes"; then