aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/include.am
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2020-02-13 10:44:00 -0500
committerDavid Goulet <dgoulet@torproject.org>2020-07-08 09:12:37 -0400
commit24a5983d84a99dc10c0b8fe961af03135960085b (patch)
treed35cd31da037f9f29a34f5cb38ec234a63aec552 /src/core/or/include.am
parent79d6127a4733cd01cece0c7bdf07d277fe8a08e3 (diff)
downloadtor-24a5983d84a99dc10c0b8fe961af03135960085b.tar.gz
tor-24a5983d84a99dc10c0b8fe961af03135960085b.zip
trace: Only build probes if instrumentation is enabled
For now, trace_probes_circuit.c only contains LTTng probes so build it only if enabled within in the build system _and_ the code. Also, ignore trace_probes_circuit.h for coccinelle parsing. Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/core/or/include.am')
-rw-r--r--src/core/or/include.am9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/core/or/include.am b/src/core/or/include.am
index 819b8ab605..9ff92adbde 100644
--- a/src/core/or/include.am
+++ b/src/core/or/include.am
@@ -34,7 +34,6 @@ LIBTOR_APP_A_SOURCES += \
src/core/or/scheduler_vanilla.c \
src/core/or/sendme.c \
src/core/or/status.c \
- src/core/or/trace_probes_circuit.c \
src/core/or/versions.c
# ADD_C_FILE: INSERT HEADERS HERE.
@@ -95,6 +94,12 @@ noinst_HEADERS += \
src/core/or/socks_request_st.h \
src/core/or/status.h \
src/core/or/tor_version_st.h \
- src/core/or/trace_probes_circuit.h \
src/core/or/var_cell_st.h \
src/core/or/versions.h
+
+if USE_TRACING_INSTRUMENTATION_LTTNG
+LIBTOR_APP_A_SOURCES += \
+ src/core/or/trace_probes_circuit.c
+noinst_HEADERS += \
+ src/core/or/trace_probes_circuit.h
+endif