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:
authormonojenkins <jo.shields+jenkins@xamarin.com>2020-12-16 23:01:32 +0300
committerGitHub <noreply@github.com>2020-12-16 23:01:32 +0300
commitb0831d11487297f8413ea6dc93564d064176a53d (patch)
tree38f67f939768352e69709c92ecb8e3ca095f8b75 /configure.ac
parent81f22d59b9b4735eac9b96b7d82a1565b63081d2 (diff)
Remove eventpipe from old Mono makefile build. (#20667)
Co-authored-by: lateralusX <lateralusX@users.noreply.github.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac18
1 files changed, 1 insertions, 17 deletions
diff --git a/configure.ac b/configure.ac
index 945618a2097..980daaf8a24 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1794,7 +1794,7 @@ fi
AM_CONDITIONAL(ENABLE_STATIC_GCC_LIBS, test "x$enable_static_gcc_libs" = "xyes")
AC_ARG_ENABLE(minimal, [ --enable-minimal=LIST drop support for LIST subsystems.
- LIST is a comma-separated list from: aot, profiler, decimal, pinvoke, debug, appdomains, verifier, dllmap, reflection_emit, reflection_emit_save, large_code, logging, com, ssa, generics, attach, jit, interpreter, simd, soft_debug, perfcounters, normalization, desktop_loader, shared_perfcounters, remoting, security, lldb, mdb, assert_messages, config, cfgdir_config, cleanup, sgen_marksweep_conc, sgen_split_nursery, sgen_gc_bridge, sgen_toggleref, sgen_debug_helpers, sgen_binary_protocol, sockets, gac, threads, processes, eventpipe.],
+ LIST is a comma-separated list from: aot, profiler, decimal, pinvoke, debug, appdomains, verifier, dllmap, reflection_emit, reflection_emit_save, large_code, logging, com, ssa, generics, attach, jit, interpreter, simd, soft_debug, perfcounters, normalization, desktop_loader, shared_perfcounters, remoting, security, lldb, mdb, assert_messages, config, cfgdir_config, cleanup, sgen_marksweep_conc, sgen_split_nursery, sgen_gc_bridge, sgen_toggleref, sgen_debug_helpers, sgen_binary_protocol, sockets, gac, threads, processes.],
[
for feature in `echo "$enable_minimal" | sed -e "s/,/ /g"`; do
eval "mono_feature_disable_$feature='yes'"
@@ -2040,22 +2040,6 @@ if test "x$mono_feature_disable_processes" = "xyes"; then
AC_MSG_NOTICE([Disabled process support])
fi
-if test "x$mono_feature_disable_eventpipe" = "xyes"; then
- AC_DEFINE(DISABLE_EVENTPIPE, 1, [Disable EventPipe support])
- AC_MSG_NOTICE([Disabled EventPipe support])
- enable_perftracing=no
-fi
-
-if test x$enable_perftracing = x -a x$with_core = xonly; then
- if test -f $srcdir/mono/eventpipe/ep.h; then
- enable_perftracing=yes
- fi
-fi
-if test x$enable_perftracing = xyes; then
- AC_DEFINE(ENABLE_PERFTRACING,1,[Enables support for eventpipe library])
-fi
-AM_CONDITIONAL(ENABLE_PERFTRACING, test x$enable_perftracing = xyes)
-
AC_ARG_ENABLE(executables, [ --disable-executables disable the build of the runtime executables], enable_executables=$enableval, enable_executables=yes)
AM_CONDITIONAL(DISABLE_EXECUTABLES, test x$enable_executables = xno)