From add5a5e32c8abed5deb2b72b95589c2861c028d3 Mon Sep 17 00:00:00 2001 From: Lluis Sanchez Date: Fri, 28 Sep 2007 18:12:34 +0000 Subject: 2007-09-28 Lluis Sanchez Gual * configure.in: Remove checks for MySql and SQLite providers since we are bundling them. svn path=/branches/monodevelop/0.16/; revision=86599 --- ChangeLog | 5 +++++ configure.in | 20 ++------------------ 2 files changed, 7 insertions(+), 18 deletions(-) diff --git a/ChangeLog b/ChangeLog index d0f444b931..ceb915463e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-09-28 Lluis Sanchez Gual + + * configure.in: Remove checks for MySql and SQLite providers since + we are bundling them. + 2007-09-27 Michael Hutchinson * configure.in: Enable the C/C++ Addin by default. Remove gcc/g++/ctags diff --git a/configure.in b/configure.in index 55b2434dd6..2ba540db4f 100644 --- a/configure.in +++ b/configure.in @@ -191,16 +191,8 @@ AC_ARG_ENABLE(database, AM_CONDITIONAL(ENABLE_DATABASE, [test x$enable_database = xyes]) -test_sqlite=$(gacutil -l | grep "Mono.Data.SqliteClient, Version=2") test_sqlserver=$(gacutil -l | grep "System.Data, Version=2") test_postgres=$(gacutil -l | grep "Npgsql, Version=2") -test_mysql=$(gacutil -l | grep "MySql.Data") - -if test "x$test_sqlite" != "x"; then - enable_sqlite="yes" -else - enable_sqlite="no (missing Mono.Data.SqliteClient)" -fi if test "x$test_sqlserver" != "x"; then enable_sqlserver="yes" @@ -214,15 +206,7 @@ else enable_postgres="no (missing Npgsql, Version 2)" fi -if test "x$test_mysql" != "x"; then - enable_mysql="yes" -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"]) # ASP.NET project addin @@ -469,8 +453,8 @@ echo " * MonoDevelop.Database support: $enable_database" if test "x$enable_database" = "xyes"; then echo " * Providers:" echo " * PostgreSQL: $enable_postgres" -echo " * MySQL: $enable_mysql" -echo " * SQLite: $enable_sqlite" +echo " * MySQL: yes" +echo " * SQLite: yes" echo " * SQL Server: $enable_sqlserver" fi -- cgit v1.2.3