From: Philippe Proulx Date: Sat, 4 Feb 2017 03:33:00 +0000 (-0500) Subject: Install notification headers in babeltrace/component/notification X-Git-Tag: v2.0.0-pre1~511 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=592ddb0023384e9d85db4504e66571c7bf6446ea Install notification headers in babeltrace/component/notification Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- diff --git a/configure.ac b/configure.ac index 632602f2..3bb4a4f9 100644 --- a/configure.ac +++ b/configure.ac @@ -352,6 +352,9 @@ AC_SUBST(babeltracepluginincludedir) babeltracecomponentincludedir="${includedir}/babeltrace/component" AC_SUBST(babeltracecomponentincludedir) +babeltracecomponentnotifincludedir="${includedir}/babeltrace/component/notification" +AC_SUBST(babeltracecomponentnotifincludedir) + program_transform_name="s&babeltrace\.bin&babeltrace&;$program_transform_name" AC_SUBST(program_transform_name) diff --git a/include/Makefile.am b/include/Makefile.am index 1b53ae2e..bfd2a166 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -41,6 +41,16 @@ babeltraceplugininclude_HEADERS = \ babeltrace/plugin/plugin.h \ babeltrace/plugin/plugin-dev.h +babeltracecomponentnotifinclude_HEADERS = \ + babeltrace/component/notification/eot.h \ + babeltrace/component/notification/notification.h \ + babeltrace/component/notification/event.h \ + babeltrace/component/notification/iterator.h \ + babeltrace/component/notification/packet.h \ + babeltrace/component/notification/schema.h \ + babeltrace/component/notification/stream.h \ + babeltrace/component/notification/heap.h + babeltracecomponentinclude_HEADERS = \ babeltrace/component/component.h \ babeltrace/component/component-class.h \ @@ -51,15 +61,7 @@ babeltracecomponentinclude_HEADERS = \ babeltrace/component/component-graph.h \ babeltrace/component/component-source.h \ babeltrace/component/component-sink.h \ - babeltrace/component/component-filter.h \ - babeltrace/component/notification/eot.h \ - babeltrace/component/notification/notification.h \ - babeltrace/component/notification/event.h \ - babeltrace/component/notification/iterator.h \ - babeltrace/component/notification/packet.h \ - babeltrace/component/notification/schema.h \ - babeltrace/component/notification/stream.h \ - babeltrace/component/notification/heap.h + babeltrace/component/component-filter.h noinst_HEADERS = \ babeltrace/align.h \