X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=configure.ac;h=0749ce7ebd6cb9c3fa1fda5fad2a2d8775771743;hb=340f77635d76ea6800caeca2d71f0432fea0d31a;hp=4de30cf55386eb873ccd6a5e35357c8f57392a4a;hpb=dca6e79f31143ffc08f8bd5ef832f820fe4546bf;p=lttng-ust.git diff --git a/configure.ac b/configure.ac index 4de30cf5..0749ce7e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,14 +1,19 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_INIT([lttng-ust],[2.1.0-rc1],[mathieu dot desnoyers at efficios dot com]) +AC_INIT([lttng-ust],[2.1.0],[mathieu dot desnoyers 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 +# This is the library version of liblttng-ust. AC_SUBST([LTTNG_UST_LIBRARY_VERSION], [0:0:0]) # note: remember to update tracepoint.h dlopen() to match this version # number. TODO: eventually automate by exporting the major number. +# This is the library version of liblttng-ust-ctl, used internally by +# liblttng-ust, lttng-sessiond, and lttng-consumerd. +AC_SUBST([LTTNG_UST_CTL_LIBRARY_VERSION], [1:0:0]) + AC_CONFIG_AUX_DIR([config]) AC_CANONICAL_TARGET AC_CANONICAL_HOST @@ -72,6 +77,18 @@ AC_PROG_CXX AC_PROG_MAKE_SET LT_INIT +# rw_PROG_CXX_WORKS +# Check whether the C++ compiler works. +AC_CACHE_CHECK([whether the C++ compiler works], + [rw_cv_prog_cxx_works], + [AC_LANG_PUSH([C++]) + AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])], + [rw_cv_prog_cxx_works=yes], + [rw_cv_prog_cxx_works=no]) + AC_LANG_POP([C++])]) + +AM_CONDITIONAL([CXX_WORKS], [test "x$rw_cv_prog_cxx_works" = "xyes"]) + ## Checks for libraries. AC_CHECK_LIB([dl], [dlopen], [ @@ -304,7 +321,6 @@ AS_ECHO("$version_description") # Report on the configuration options AS_ECHO() AS_ECHO("LTTng-UST will be built with the following options:") -AS_ECHO("Library format: $LIBFORMAT") AS_ECHO() AS_ECHO_N("Java support (JNI): ")