X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=tests%2Fdemo%2FMakefile.am;h=4e113edc87705e0c9654d68b5b589df5e493533e;hb=90cefaa31af0a85593a155fba8570e04c653225a;hp=4afeaad79529bc4fad86eb377a70bdec5c0a04b7;hpb=277d6e1d016e69184fd49b867ff1268d3ff668f5;p=lttng-ust.git diff --git a/tests/demo/Makefile.am b/tests/demo/Makefile.am index 4afeaad7..4e113edc 100644 --- a/tests/demo/Makefile.am +++ b/tests/demo/Makefile.am @@ -37,5 +37,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 +