X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=configure.ac;h=0aa290cf585d26a368381ee86e288a2bc7034ecc;hb=6249c0902813419cb60e19cbbc7ddf417484b71d;hp=52e626b269a1d4691c02d123beaf27229199e3e5;hpb=369ee1a1b12338e5158d24f9c879f5dd52f1aba2;p=lttng-ust.git diff --git a/configure.ac b/configure.ac index 52e626b2..0aa290cf 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.6.1],[mathieu dot desnoyers at efficios dot com]) +AC_INIT([lttng-ust],[2.6.5],[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 @@ -238,6 +238,7 @@ changequote([,])dnl s390) NO_UNALIGNED_ACCESS=1 ;; s390x) NO_UNALIGNED_ACCESS=1 ;; arm*) NO_UNALIGNED_ACCESS=1 ;; + aarch64) NO_UNALIGNED_ACCESS=1 ;; mips*) NO_UNALIGNED_ACCESS=1 ;; tile*) NO_UNALIGNED_ACCESS=1 ;; *) AC_MSG_ERROR([unable to detect alignment requirements (unsupported architecture ($host_cpu)?)]) ;; @@ -251,7 +252,7 @@ fi # Check for JNI header files if requested AC_ARG_ENABLE([jni-interface], [AS_HELP_STRING([--enable-jni-interface],[build JNI interface between C and Java. Needs Java include files [default=no]])], - [jni_interface=$withval], + [jni_interface=$enableval], [jni_interface=no] )