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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLarry Ewing <lewing@microsoft.com>2019-06-06 21:41:45 +0300
committerLarry Ewing <lewing@microsoft.com>2019-06-12 18:58:25 +0300
commitbd7cb7e4d4de8769d97e0a3700f09b653a773317 (patch)
tree0e244b3ba40a26e82a73d84693c16d6e1d564328 /configure.ac
parent225890a180ea2969c55a031fdeeec2219cfaa0ec (diff)
Enable the compiler server by default
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index dc878b2d249..40620be53cc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6638,11 +6638,11 @@ AC_ARG_WITH(compiler-server, [ --with-compiler-server=yes,no,default Enabl
elif test x$withval = xno; then
enable_compiler_server=no;
elif test x$withval = xdefault; then
- enable_compiler_server=no;
+ enable_compiler_server=yes;
else
AC_MSG_ERROR([You must supply one of "yes", "no" or "default" to the --with-compiler-server option])
fi
-],[enable_compiler_server=no])
+],[enable_compiler_server=yes])
if test x$enable_compiler_server = xyes; then
if test x$csc_compiler = xmcs; then