X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=configure.ac;h=7493f62be6a2541b2cce29ad830d4d925c36a36d;hb=6ae20f706f09cf8dba1fbad4a672ff7226c8d68a;hp=ca6ae26731280ef2f5bec9c77b6877c216b21ffb;hpb=7538241befdda770998d3354968214729a9fc4e4;p=lttng-ust.git diff --git a/configure.ac b/configure.ac index ca6ae267..7493f62b 100644 --- a/configure.ac +++ b/configure.ac @@ -7,12 +7,12 @@ dnl Process this file with autoconf to produce a configure script. # Project version information m4_define([ust_version_major], [2]) -m4_define([ust_version_minor], [13]) +m4_define([ust_version_minor], [14]) m4_define([ust_version_patch], [0]) -m4_define([ust_version_dev_stage], [-rc1]) +m4_define([ust_version_dev_stage], [-pre]) m4_define([ust_version], ust_version_major[.]ust_version_minor[.]ust_version_patch[]ust_version_dev_stage) -m4_define([ust_version_name], [[Nordicité]]) -m4_define([ust_version_description], [[The product of a collaboration between Champ Libre and Boréale, this farmhouse IPA is brewed with Kveik yeast and Québec-grown barley, oats and juniper branches. The result is a remarkable fruity hazy golden IPA that offers a balanced touch of resinous and woodsy bitterness.]]) +m4_define([ust_version_name], [[O-Beer]]) +m4_define([ust_version_description], [[An alcoholic drink made from yeast-fermented malt flavored with hops.]]) # Library version information of "liblttng-ust" # Following the numbering scheme proposed by libtool for the library version @@ -319,10 +319,15 @@ PKG_CHECK_MODULES([URCU], [liburcu >= 0.12]) # Additional variables captured during ./configure AC_ARG_VAR([CLASSPATH], [Java class path]) +AC_ARG_VAR([JAVACFLAGS], [Java compiler flags]) +AC_ARG_VAR([JAVAC], [Java compiler]) +AC_ARG_VAR([JAVAFLAGS], [Java VM flags]) +AC_ARG_VAR([JAVA], [Java VM]) +AC_ARG_VAR([JAVAPREFIX], [prefix where Java runtime is installed]) ## ## -## Optionnal features selection ## +## Optional features selection ## ## ## # numa integration @@ -380,9 +385,6 @@ AS_HELP_STRING([--with-lttng-system-rundir], [Location of the system directory w lttng_system_rundir="/var/run/lttng" ]) -# Add the java command line arguments like '--wit-java-prefix' -AX_JAVA_OPTIONS - ## ## ## Check for conflicting features selection ## @@ -404,7 +406,9 @@ AE_IF_FEATURE_ENABLED([java-agent-all], [ # The numa integration requires libnuma AE_IF_FEATURE_ENABLED([numa], [ - AC_CHECK_LIB([numa], [numa_available], [], [ + AC_CHECK_LIB([numa], [numa_available], [ + AC_DEFINE([HAVE_LIBNUMA], [1], [Define to 1 if libnuma is available.]) + ], [ AC_MSG_ERROR([dnl libnuma is not available. Please either install it (e.g. libnuma-dev) or use [LDFLAGS]=-Ldir to specify the right location, or use --disable-numa configure @@ -419,7 +423,7 @@ AS_IF([AE_IS_FEATURE_ENABLED([jni-interface]) || AE_IS_FEATURE_ENABLED([java-age AX_PROG_JAVA AX_PROG_JAR - # Get the CPPFLAGS required to build jni libaries + # Get the CPPFLAGS required to build jni libraries AX_JNI_INCLUDE_DIR for jni_include_dir in $JNI_INCLUDE_DIRS; do JNI_CPPFLAGS="$JNI_CPPFLAGS -I$jni_include_dir"