From: Simon Marchi Date: Thu, 2 May 2019 18:36:57 +0000 (-0400) Subject: include: add missing files to dist tarball X-Git-Tag: v2.0.0-pre5~9 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=6c0bb05a6851602e777bc2fdb42e4b0e8ab2f1c9 include: add missing files to dist tarball When making a tarball (make dist) and trying to build from it, it fails because of missing header files. This patch adds all the necessary headers to the dist tarball to make "./configure && make" from the tarball succeed. Change-Id: I89051cb060e911eac154ef1726034e905b49b085 Signed-off-by: Simon Marchi Reviewed-on: https://review.lttng.org/c/babeltrace/+/1243 Reviewed-by: Philippe Proulx Reviewed-by: Jonathan Rajotte Julien --- diff --git a/include/Makefile.am b/include/Makefile.am index d4ec925e..2d8cb554 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -88,6 +88,7 @@ babeltracectfinclude_HEADERS = \ # CTF writer API babeltracectfwriterincludedir = "$(includedir)/babeltrace/ctf-writer" babeltracectfwriterinclude_HEADERS = \ + babeltrace/ctf-writer/clock-class.h \ babeltrace/ctf-writer/clock.h \ babeltrace/ctf-writer/event-fields.h \ babeltrace/ctf-writer/event-types.h \ @@ -244,12 +245,15 @@ noinst_HEADERS = \ babeltrace/ctf-writer/field-types-internal.h \ babeltrace/ctf-writer/field-wrapper-internal.h \ babeltrace/ctf-writer/functor-internal.h \ + babeltrace/ctf-writer/object-internal.h \ + babeltrace/ctf-writer/object-pool-internal.h \ babeltrace/ctf-writer/resolve-internal.h \ babeltrace/ctf-writer/stream-class-internal.h \ babeltrace/ctf-writer/stream-internal.h \ babeltrace/ctf-writer/trace-internal.h \ babeltrace/ctf-writer/utils-internal.h \ babeltrace/ctf-writer/validation-internal.h \ + babeltrace/ctf-writer/values-internal.h \ babeltrace/ctf-writer/visitor-internal.h \ babeltrace/ctf-writer/writer-internal.h \ babeltrace/mmap-align-internal.h \ @@ -270,6 +274,7 @@ noinst_HEADERS = \ babeltrace/trace-ir/resolve-field-path-internal.h \ babeltrace/trace-ir/stream-class-internal.h \ babeltrace/trace-ir/stream-internal.h \ + babeltrace/trace-ir/trace-class-internal.h \ babeltrace/trace-ir/trace-internal.h \ babeltrace/trace-ir/utils-internal.h \ babeltrace/prio-heap-internal.h \ @@ -291,9 +296,12 @@ noinst_HEADERS = \ babeltrace/graph/message-internal.h \ babeltrace/graph/message-iterator-internal.h \ babeltrace/graph/message-packet-internal.h \ + babeltrace/graph/message-stream-activity-internal.h \ babeltrace/graph/message-stream-internal.h \ babeltrace/graph/port-internal.h \ babeltrace/graph/query-executor-internal.h \ babeltrace/list-internal.h \ + babeltrace/fd-cache-internal.h \ + babeltrace/property-internal.h \ version.h \ version.i diff --git a/plugins/ctf/fs-sink/Makefile.am b/plugins/ctf/fs-sink/Makefile.am index 7a33c8fa..3139ec50 100644 --- a/plugins/ctf/fs-sink/Makefile.am +++ b/plugins/ctf/fs-sink/Makefile.am @@ -8,6 +8,10 @@ libbabeltrace_plugin_ctf_fs_sink_la_SOURCES = \ logging.h \ fs-sink-ctf-meta.h \ translate-trace-ir-to-ctf-ir.c \ + translate-trace-ir-to-ctf-ir.h \ translate-ctf-ir-to-tsdl.c \ + translate-ctf-ir-to-tsdl.h \ fs-sink-stream.c \ - fs-sink-trace.c + fs-sink-stream.h \ + fs-sink-trace.c \ + fs-sink-trace.h