From 4e9e57e59df6fface30734beafe09535d84eac4f Mon Sep 17 00:00:00 2001 From: Michael Hutchinson Date: Fri, 21 Sep 2007 23:39:59 +0000 Subject: 2007-09-22 Michael Hutchinson * configure.in: Enable ASP.NET project support by default, and fix quoting in database provider detection. svn path=/trunk/monodevelop/; revision=86185 --- configure.in | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'configure.in') 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 -- cgit v1.2.3