Add basic utils.muxer tests
[babeltrace.git] / configure.ac
index 84fae3c356c7a628113b3eb9a5b48c0ca5564905..e937d25d35b815b31f45c546d76dd92981caf4dc 100644 (file)
@@ -1,14 +1,24 @@
 AC_PREREQ([2.50])
-AC_INIT([babeltrace],[2.0.0-pre],[jeremie dot galarneau at efficios dot com])
+m4_define([bt_version_major], [2])
+m4_define([bt_version_minor], [0])
+m4_define([bt_version_patch], [0])
+m4_define([bt_version_extra], [-pre])
+m4_define([bt_version], bt_version_major[.]bt_version_minor[.]bt_version_patch[]bt_version_extra)
+AC_INIT([babeltrace],bt_version,[jeremie dot galarneau at efficios dot com])
 
 # Following the numbering scheme proposed by libtool for the library version
 # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
-AC_SUBST([BABELTRACE_LIBRARY_VERSION], [2:0:0])
+AC_SUBST([BABELTRACE_LIBRARY_VERSION], bt_version_major[:]bt_version_minor[:]bt_version_patch)
 
 AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_AUX_DIR([config])
 AC_CONFIG_MACRO_DIR([m4])
 
+AC_DEFINE([BT_VERSION_MAJOR], bt_version_major, [Babeltrace library major version])
+AC_DEFINE([BT_VERSION_MINOR], bt_version_minor, [Babeltrace library minor version])
+AC_DEFINE([BT_VERSION_PATCH], bt_version_patch, [Babeltrace library patch version])
+AC_DEFINE([BT_VERSION_EXTRA], ["]bt_version_extra["], [Babeltrace library extra version])
+
 AC_CANONICAL_TARGET
 AC_CANONICAL_HOST
 
@@ -456,8 +466,8 @@ AC_CONFIG_FILES([
        lib/Makefile
        lib/prio_heap/Makefile
        lib/plugin/Makefile
-        lib/component/Makefile
-       lib/component/notification/Makefile
+       lib/graph/Makefile
+       lib/graph/notification/Makefile
        lib/ctf-ir/Makefile
        lib/ctf-writer/Makefile
        include/Makefile
@@ -477,6 +487,7 @@ AC_CONFIG_FILES([
        tests/bindings/Makefile
        tests/bindings/python/Makefile
        tests/bindings/python/bt2/Makefile
+       tests/plugins/Makefile
        extras/Makefile
        extras/valgrind/Makefile
        plugins/Makefile
@@ -487,12 +498,13 @@ AC_CONFIG_FILES([
        plugins/ctf/common/notif-iter/Makefile
        plugins/ctf/fs/Makefile
        plugins/ctf/lttng-live/Makefile
-       plugins/muxer/Makefile
        plugins/text/Makefile
+       plugins/text/pretty/Makefile
        plugins/writer/Makefile
        plugins/utils/Makefile
        plugins/utils/dummy/Makefile
        plugins/utils/trimmer/Makefile
+       plugins/utils/muxer/Makefile
        python-plugin-provider/Makefile
        plugins/libctfcopytrace/Makefile
        plugins/debug-info/Makefile
@@ -508,6 +520,8 @@ AC_CONFIG_FILES([tests/lib/test_seek_empty_packet], [chmod +x tests/lib/test_see
 AC_CONFIG_FILES([tests/lib/test_dwarf_complete], [chmod +x tests/lib/test_dwarf_complete])
 AC_CONFIG_FILES([tests/lib/test_bin_info_complete], [chmod +x tests/lib/test_bin_info_complete])
 
+AC_CONFIG_FILES([tests/plugins/test-utils-muxer-complete], [chmod +x tests/plugins/test-utils-muxer-complete])
+
 AC_CONFIG_FILES([tests/bin/test_trace_read], [chmod +x tests/bin/test_trace_read])
 AC_CONFIG_FILES([tests/bin/intersection/test_intersection], [chmod +x tests/bin/intersection/test_intersection])
 AC_CONFIG_FILES([tests/bin/intersection/bt_python_helper.py])
This page took 0.023283 seconds and 4 git commands to generate.