X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=lib%2Fbabeltrace.c;h=1623b6ea7f9fe7458ace5ea48ee396f08d5051da;hb=0d72b8c329ad51d14ab4e83330b38c2c8da69dd4;hp=881e80d605cf9f80d77c242604ab4bd3be66c2d8;hpb=dc3fffef7b84cc4af1a7c99828fd57a106cd2257;p=babeltrace.git diff --git a/lib/babeltrace.c b/lib/babeltrace.c index 881e80d6..1623b6ea 100644 --- a/lib/babeltrace.c +++ b/lib/babeltrace.c @@ -1,8 +1,4 @@ /* - * babeltrace.c - * - * Babeltrace Library - * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers @@ -26,17 +22,25 @@ * SOFTWARE. */ -#include +#include +#include #include -#include -bool babeltrace_verbose, babeltrace_debug; +int bt_version_get_major(void) +{ + return BT_VERSION_MAJOR; +} + +int bt_version_get_minor(void) +{ + return BT_VERSION_MINOR; +} + +int bt_version_get_patch(void) { + return BT_VERSION_PATCH; +} -static -void __attribute__((constructor)) init_babeltrace_lib(void) +const char *bt_version_get_extra(void) { - if (getenv("BABELTRACE_VERBOSE")) - babeltrace_verbose = 1; - if (getenv("BABELTRACE_DEBUG")) - babeltrace_debug = 1; + return BT_VERSION_EXTRA; }