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:
authorLluis Sanchez <lluis@novell.com>2006-05-29 18:09:49 +0400
committerLluis Sanchez <lluis@novell.com>2006-05-29 18:09:49 +0400
commit67fb44c2857401fde7edfd19fa0f6bcb613d3ef0 (patch)
tree763e325a2eec7283d6cd99d6ee4ff4a9b9bcfdee /configure.in
parent05284c8d606fdbe85b57d00b0dd867dbab2fb625 (diff)
* configure.in: Added option for optionally enabling
the nemerle add-in. Patch by Alejandro Serrano. 2006-05-22 Lluis Sanchez Gual <lluis@novell.com> svn path=/trunk/monodevelop/; revision=61228
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in15
1 files changed, 15 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 506a65c996..39f21f52cb 100644
--- a/configure.in
+++ b/configure.in
@@ -140,6 +140,20 @@ if test "x$enable_boo" = "xyes" ; then
AC_PATH_PROG(BOOC, booc)
fi
+NEMERLE_REQUIRED_VERSION=0.9.3.99
+AC_ARG_ENABLE(nemerle,
+ AC_HELP_STRING([--enable-nemerle],
+ [enable support for Nemerle [default=no]]),
+ [PKG_CHECK_MODULES(NEMERLE, nemerle >= $NEMERLE_REQUIRED_VERSION, enable_nemerle=yes, enable_nemerle=no)],
+ enable_nemerle=no)
+
+AM_CONDITIONAL(ENABLE_NEMERLE, test x$enable_nemerle = xyes)
+AC_SUBST(NEMERLE_LIBS)
+
+if test "x$enable_nemerle" = "xyes" ; then
+ AC_PATH_PROG(NCC, ncc)
+fi
+
dnl nunit
MONO_NUNIT_REQUIRED_VERSION=1.1.8
NUNIT_REQUIRED_VERSION=2.2.0
@@ -295,6 +309,7 @@ echo " * Oracle: yes"
echo " * SQL Server: yes"
echo " * java support: $enable_java"
echo " * boo support: $enable_boo"
+echo " * Nemerle support: $enable_nemerle"
echo " * NUnit support: $enable_nunit"
echo " * Mono class library development extensions: $enable_monoextensions"
echo " * Version control support: $enable_versioncontrol"