X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=configure.ac;h=66fa09dec0034f4dce9df198c2066c9cb520bcbb;hb=1572ffb1ad081d6a47b3b05831aa19e15435a40d;hp=66a810669b7b584987454f4236fa116014788ed5;hpb=40d8182c213779bb87974d243b6fc03ec3297108;p=lttng-ust.git diff --git a/configure.ac b/configure.ac index 66a81066..66fa09de 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_INIT([lttng-ust],[2.4.2],[mathieu dot desnoyers at efficios dot com]) +AC_INIT([lttng-ust],[2.4.3],[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 @@ -103,6 +103,13 @@ AC_CACHE_CHECK([whether the C++ compiler works], AM_CONDITIONAL([CXX_WORKS], [test "x$rw_cv_prog_cxx_works" = "xyes"]) +# Check if the compiler support weak symbols +AX_SYS_WEAK_ALIAS + +if test "x${ax_cv_sys_weak_alias}" = "xno"; then + AC_MSG_ERROR([Your platform doesn't support weak symbols.]) +fi + ## Checks for libraries. AC_CHECK_LIB([dl], [dlopen], [ @@ -246,7 +253,7 @@ AS_IF([test "x$jni_interface" = "xyes"],[ AC_CHECK_HEADERS([jni.h],[],[ AC_MSG_ERROR([missing jni.h Make sure Sun Java, OpenJDK or GCJ is installed and that this header file exists in the system path. -Use the --with-java-jdk=DIR flag to point to your Java include files, or disable the JNI interface.]) +Use the --with-java-jdk=DIR option to point to your JDK directory, or disable the JNI interface.]) ]) ]) AM_CONDITIONAL([BUILD_JNI_INTERFACE], [test "x$jni_interface" = "xyes"])