X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=configure.ac;h=1c49db8152092247c7010dd09580c4a05f9961c7;hb=35d4700747ecb871bcc76ffb400916eb41cf0239;hp=01043fbdcd7178ea870a669f91b04f3582c85eff;hpb=06a626b83f4426ea5b8d3199d1edf5a07594026e;p=babeltrace.git diff --git a/configure.ac b/configure.ac index 01043fbd..1c49db81 100644 --- a/configure.ac +++ b/configure.ac @@ -315,6 +315,16 @@ AS_IF([test "x$_enable_debug_info" = xyes], [ AC_DEFINE([ENABLE_DEBUG_INFO], [1], [Define to 1 if you enable the 'debug info' feature]) ], []) +AC_ARG_VAR([BUILT_IN_PLUGINS], [Statically-link in-tree plug-ins into the babeltrace binary]) +AS_IF([test "x$BUILT_IN_PLUGINS" != x], [ +# Built-in plug-ins are only available when the --disable-shared --enable-static options are used. + AS_IF([test "x$enable_static" != "xyes"], [AC_MSG_ERROR(--enable-static must be used to bundle plug-ins in the babeltrace executable)]) + AS_IF([test "x$enable_shared" = "xyes"], [AC_MSG_ERROR(--disable-shared must be used to bundle plug-ins in the babeltrace executable)]) + built_in_plugins=yes + AC_DEFINE([BT_BUILT_IN_PLUGINS], [1], [Define to 1 to register plug-in attributes in static executable sections]) +]) +AM_CONDITIONAL([BUILT_IN_PLUGINS], [test "x$built_in_plugins" = "xyes"]) + PKG_CHECK_MODULES(GMODULE, [gmodule-2.0 >= 2.0.0]) LIBS="$LIBS $GMODULE_LIBS" @@ -362,6 +372,7 @@ AC_CONFIG_FILES([ lib/Makefile lib/prio_heap/Makefile lib/plugin-system/Makefile + lib/plugin-system/notification/Makefile include/Makefile bindings/Makefile bindings/python/Makefile @@ -382,6 +393,7 @@ AC_CONFIG_FILES([ plugins/ctf/common/notif-iter/Makefile plugins/ctf/fs/Makefile plugins/ctf/lttng-live/Makefile + plugins/muxer/Makefile plugins/text/Makefile babeltrace.pc babeltrace-ctf.pc @@ -440,6 +452,9 @@ PPRINT_PROP_BOOL([Python bindings doc], $value) test "x$_enable_debug_info" = "xyes" && value=1 || value=0 PPRINT_PROP_BOOL([Debug information output], $value) +# built-in plug-ins enabled/disabled +test "x$built_in_plugins" = "xyes" && value=1 || value=0 +PPRINT_PROP_BOOL([Built-in plug-ins], $value) report_bindir="`eval eval echo $bindir`" report_libdir="`eval eval echo $libdir`"