X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=configure.ac;h=1c49db8152092247c7010dd09580c4a05f9961c7;hb=cba174d597a5c4a47ab7fd040b5650e23dd0b52c;hp=afc696d910d479d0f85b2a13cf313982af23b484;hpb=5c0f40f4b900e41630c0291468c50aa9a62db8b1;p=babeltrace.git diff --git a/configure.ac b/configure.ac index afc696d9..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" @@ -442,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`"