From 43cd528360df0d9d74908471a041f749c124e66b Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Thu, 6 Jun 2019 13:41:45 -0500 Subject: [PATCH] Enable the compiler server by default Commit migrated from https://github.com/mono/mono/commit/bd7cb7e4d4de8769d97e0a3700f09b653a773317 --- src/mono/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mono/configure.ac b/src/mono/configure.ac index dc878b2..40620be 100644 --- a/src/mono/configure.ac +++ b/src/mono/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 -- 2.7.4