X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=configure.ac;h=c3809bee7e17336dde1e5ebb5e573737711777a1;hb=e78cdc59e75e5f76bb63bc6a5de30493a082ac16;hp=9e36c48e4d2d441bb33a63eaf00da91789a1a345;hpb=6a29d9fdf573e71039efd407da89e36f8c11ee42;p=babeltrace.git diff --git a/configure.ac b/configure.ac index 9e36c48e..c3809bee 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_INIT([babeltrace],[2.0.0-pre],[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], [1:0:0]) +AC_SUBST([BABELTRACE_LIBRARY_VERSION], [2:0:0]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_AUX_DIR([config]) @@ -231,6 +231,10 @@ AC_CHECK_LIB([popt], [poptGetContext], [], [AC_MSG_ERROR([Cannot find popt.])] ) +# Plugins +AC_ARG_VAR([PLUGINSDIR], [built-in plugins install directory [LIBDIR/babeltrace/plugins]]) +AS_IF([test "x$PLUGINSDIR" = x], [PLUGINSDIR='$(libdir)/babeltrace/plugins']) + # For Python # SWIG version needed or newer: swig_version=2.0.0 @@ -339,6 +343,10 @@ AC_CONFIG_FILES([ Makefile types/Makefile compat/Makefile + ctf-reader-proto/Makefile + ctf-reader-proto/metadata-parsing/Makefile + ctf-reader-proto/ctf-notif-iter/Makefile + ctf-reader-proto/ctf-btr/Makefile formats/Makefile formats/ctf/Makefile formats/ctf/types/Makefile