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:
authorAleksey Kliger <aleksey@xamarin.com>2017-06-24 00:43:02 +0300
committerAleksey Kliger (λgeek) <akliger@gmail.com>2017-06-24 18:29:16 +0300
commit52d9a55a861527ed4027f8e10a97e3cc880baf4a (patch)
treeeb4cafcdfce60232a09011eaa190bcad25c09be8 /configure.ac
parent80165d21175e05d502b968701b41a0d66608cc99 (diff)
[null_gc] Get null GC building again.
- Had to borrow a gchandles implementation from mono/metadata/boehm-gc.c - Added coop handles support for NULL GC - Fixed typos in configure.ac - To use: `./configure --with-libgc=none --without-sgen --enable-boehm` You get a mono-boehm which actually is not collecting anything.
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 d0e93384fdd..b47b2f254b2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1262,7 +1262,7 @@ dnl
dnl Boehm GC configuration
dnl
-AC_ARG_WITH(libgc, [ --with-libgc=included,none Controls the Boehm GC config, default=included],[libgc=$with_gc],[libgc=included])
+AC_ARG_WITH(libgc, [ --with-libgc=included,none Controls the Boehm GC config, default=included],[libgc=$with_libgc],[libgc=included])
AC_ARG_ENABLE(boehm, [ --disable-boehm Disable the Boehm GC.], support_boehm=$enableval,support_boehm=${support_boehm:-yes})
AM_CONDITIONAL(SUPPORT_BOEHM, test x$support_boehm = xyes)
@@ -1320,7 +1320,7 @@ if test "x$support_boehm" = "xyes"; then
gc_msg="none"
;;
*)
- AC_MSG_ERROR([Invalid argument to --with-libgc.])
+ AC_MSG_ERROR([Invalid argument $libgc to --with-libgc.])
;;
esac