X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2Fdemo%2FMakefile.am;h=e4570ff0a694d9fea50f14f5ed8e89696832e7a1;hb=c6c454ab6ca9d19041d4f16e6139b514fe1b954f;hp=f96980ed6514ae91d2a0024011282de573c41f39;hpb=bf24b009e15fdf7c9c5fdf464a2576ce8cd7dfc3;p=lttng-ust.git diff --git a/tests/demo/Makefile.am b/tests/demo/Makefile.am index f96980ed..e4570ff0 100644 --- a/tests/demo/Makefile.am +++ b/tests/demo/Makefile.am @@ -33,5 +33,11 @@ liblttng_ust_provider_ust_tests_demo3_la_LDFLAGS = \ noinst_PROGRAMS = demo demo_SOURCES = demo.c ust_tests_demo.h -# The demo program only depends on libdl. -demo_LDFLAGS = -ldl +# The demo program only depends on libdl/libc for dlopen(). +if LTTNG_UST_BUILD_WITH_LIBDL +demo_LDADD = -ldl +endif +if LTTNG_UST_BUILD_WITH_LIBC_DL +demo_LDADD = -lc +endif +