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:
authorZoltan Varga <vargaz@gmail.com>2004-11-18 15:48:26 +0300
committerZoltan Varga <vargaz@gmail.com>2004-11-18 15:48:26 +0300
commit312955f736bb38e3d1ffa5b3f148fd0e323bf814 (patch)
tree2b35fb3dba577bf25e11016174427f8a9a7666cb /configure.in
parent45ec04ea9293c0c9f1a6f38b0d9955f90de376e1 (diff)
2004-11-18 Zoltan Varga <vargaz@freemail.hu>
* configure.in: Disable static linking of mono if --disable-static is given. Fixes #69466. svn path=/trunk/mono/; revision=36266
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 224c3402862..f7b025dbdaa 100644
--- a/configure.in
+++ b/configure.in
@@ -358,6 +358,11 @@ fi
AC_ARG_WITH(sigaltstack, [ --with-sigaltstack=yes,no enable/disable support for sigaltstack],[],[with_sigaltstack=no])
AC_ARG_WITH(static_mono, [ --with-static_mono=yes,no link mono statically to libmono (faster)],[],[with_static_mono=yes])
+
+if test "x$enable_static" = "xno"; then
+ with_static_mono=no
+fi
+
AM_CONDITIONAL(STATIC_MONO, test x$with_static_mono != xno)
# assembly bundle support, see metadata/make-bundle.pl for more info