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:
authorRodrigo Kumpera <kumpera@gmail.com>2014-01-16 05:29:03 +0400
committerRodrigo Kumpera <kumpera@gmail.com>2014-01-16 05:29:03 +0400
commitf5a80b8456cb85d2bf284f91e44d6248c596b889 (patch)
treea9729669e3faa4598cae2218104f8d3318b9e5e1 /configure.in
parent01e18a7fcd9a02400743ee433270674bd06c0b8c (diff)
[runtime] Make gsharing and explicit configure extension.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 514daee307b..65ca8f2cf3d 100644
--- a/configure.in
+++ b/configure.in
@@ -952,6 +952,11 @@ if test x$has_extension_module != xno ; then
AC_MSG_NOTICE([Enabling mono extension module.])
fi
+AC_ARG_ENABLE(gsharing, [ --enable-gsharing Enable gsharing], enable_gsharing=$enableval, enable_gsharing=no)
+if test x$enable_gsharing = xyes; then
+ AC_DEFINE(MONO_GSHARING,1,[Gsharing])
+fi
+
AC_ARG_ENABLE(native-types, [ --enable-native-types Enable native types], enable_native_types=$enableval, enable_native_types=no)
if test x$enable_native_types = xyes; then
AC_DEFINE(MONO_NATIVE_TYPES,1,[native types])