From: Mathieu Desnoyers Date: Sat, 5 Nov 2011 14:28:47 +0000 (-0400) Subject: fix make dist: adding missing headers to makefiles X-Git-Tag: v1.9.1~131 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=36385b6ec421b3e752ce1eaad3bcb6776f5536dd;p=lttng-ust.git fix make dist: adding missing headers to makefiles Signed-off-by: Mathieu Desnoyers --- diff --git a/configure.ac b/configure.ac index 391cc9ac..dc30060f 100644 --- a/configure.ac +++ b/configure.ac @@ -192,6 +192,24 @@ Use --with-java-jdk=DIR flag to point to your java include files or desactivate fi AM_CONDITIONAL(BUILD_JNI_INTERFACE, test "$with_jni_interface" = "yes") +#currently disabled. + #liblttng-ust-malloc/Makefile + #tests/hello2/Makefile + #tests/basic/Makefile + #tests/simple_include/Makefile + #tests/snprintf/Makefile + #tests/test-nevents/Makefile + #tests/test-libustinstr-malloc/Makefile + #tests/dlopen/Makefile + #tests/same_line_marker/Makefile + #tests/trace_event/Makefile + #tests/tracepoint/Makefile + #tests/tracepoint/benchmark/Makefile + #tests/register_test/Makefile + #tests/libustctl_function_#tests/Makefile + #tests/exit-fast/Makefile + #tests/basic_long/Makefile + AC_CONFIG_FILES([ Makefile include/Makefile @@ -206,27 +224,11 @@ AC_CONFIG_FILES([ liblttng-ust-ctl/Makefile liblttng-ust-fork/Makefile liblttng-ust-java/Makefile - liblttng-ust-malloc/Makefile tests/Makefile tests/hello/Makefile + tests/fork/Makefile tests/ust-basic-tracing/Makefile tests/ust-multi-test/Makefile - tests/hello2/Makefile - tests/basic/Makefile - tests/basic_long/Makefile - tests/fork/Makefile - tests/simple_include/Makefile - tests/snprintf/Makefile - tests/test-nevents/Makefile - tests/test-libustinstr-malloc/Makefile - tests/dlopen/Makefile - tests/same_line_marker/Makefile - tests/trace_event/Makefile - tests/tracepoint/Makefile - tests/tracepoint/benchmark/Makefile - tests/register_test/Makefile - tests/libustctl_function_tests/Makefile - tests/exit-fast/Makefile lttng-ust.pc ]) AC_OUTPUT diff --git a/include/Makefile.am b/include/Makefile.am index eb77ee37..a843ea6b 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -37,4 +37,5 @@ noinst_HEADERS = \ lttng/clock.h \ lttng/probe-internal.h \ lttng/stringify.h \ - lttng/wait.h + lttng/wait.h \ + lttng/bitfield.h diff --git a/libringbuffer/Makefile.am b/libringbuffer/Makefile.am index 9cd8c269..a64ee6e4 100644 --- a/libringbuffer/Makefile.am +++ b/libringbuffer/Makefile.am @@ -3,14 +3,18 @@ AM_CFLAGS = -fno-strict-aliasing noinst_LTLIBRARIES = libringbuffer.la -noinst_HEADERS = \ - smp.h - libringbuffer_la_SOURCES = \ shm.c \ + shm.h \ smp.c \ + shm.h shm_types.h shm_internal.h \ ring_buffer_backend.c \ - ring_buffer_frontend.c + ring_buffer_frontend.c \ + api.h \ + backend.h backend_internal.h backend_types.h \ + frontend_api.h frontend.h frontend_internal.h frontend_types.h \ + nohz.h + libringbuffer_la_LDFLAGS = -no-undefined -version-info 0:0:0