Add check for libuuid to configure.ac
[lttng-ust.git] / configure.ac
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_INIT([lttng-ust], [1.9.0], [mathieu dot desnoyers at efficios dot com])
5 AC_CONFIG_AUX_DIR([config])
6 AC_CANONICAL_TARGET
7 AC_CANONICAL_HOST
8 AC_CONFIG_MACRO_DIR([config])
9 AM_INIT_AUTOMAKE([foreign])
10 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
11 AC_CONFIG_SRCDIR([include/lttng/tracepoint.h])
12 AC_CONFIG_HEADERS([config.h include/lttng/config.h])
13 AH_TEMPLATE([HAVE_EFFICIENT_UNALIGNED_ACCESS], [Use efficient unaligned access.])
14 # Compute minor/major version numbers
15 major_version=`echo AC_PACKAGE_VERSION | sed 's/\..*//'`
16 minor_version=`echo AC_PACKAGE_VERSION | sed 's/.*\.//' | sed 's/^0//'`
17 AC_SUBST([MAJOR_VERSION], [$major_version])
18 AC_SUBST([MINOR_VERSION], [$minor_version])
19 AC_DEFINE_UNQUOTED([VERSION_MAJOR], $major_version, [UST major version number])
20 AC_DEFINE_UNQUOTED([VERSION_MINOR], $minor_version, [UST minor version number])
21
22
23 # Checks for programs.
24 AC_PROG_CC
25 AC_PROG_MAKE_SET
26 AC_PROG_LIBTOOL
27
28 ## Checks for libraries.
29 AC_CHECK_LIB([dl], [dlopen])
30 AC_CHECK_LIB([pthread], [pthread_create])
31
32 # Check for libuuid
33 AC_CHECK_LIB([uuid], [uuid_generate], [],
34 [AC_MSG_ERROR([Cannot find libuuid. Use [LDFLAGS]=-Ldir to specify its location.])]
35 )
36
37 # Checks for header files.
38 #AC_CHECK_HEADERS([fcntl.h stdint.h stdlib.h string.h sys/socket.h sys/time.h unistd.h])
39
40 # Checks for typedefs, structures, and compiler characteristics.
41 AC_C_INLINE
42 #AC_TYPE_INT16_T
43 #AC_TYPE_INT32_T
44 #AC_TYPE_INT64_T
45 #AC_TYPE_INT8_T
46 #AC_TYPE_PID_T
47 #AC_TYPE_SIZE_T
48 #AC_TYPE_SSIZE_T
49 #AC_TYPE_UINT16_T
50 #AC_TYPE_UINT32_T
51 #AC_TYPE_UINT64_T
52 #AC_TYPE_UINT8_T
53 #AC_CHECK_TYPES([ptrdiff_t])
54
55 # Checks for library functions.
56 AC_FUNC_MALLOC
57 AC_CHECK_FUNCS([gettimeofday munmap socket strerror strtol])
58
59 CFLAGS="-Wall $CFLAGS"
60
61 # URCU
62
63 # urcu - check if we just find the headers it out of the box.
64 AC_CHECK_HEADERS([urcu-bp.h], [], [AC_MSG_ERROR([Cannot find [URCU] headers (urcu-bp.h). Use [CFLAGS]=-Idir to specify their location.
65 This error can also occur when the liburcu package's configure script has not been run.])])
66
67 AC_MSG_CHECKING([caa_likely()])
68 AC_TRY_COMPILE(
69 [
70 #include <urcu/compiler.h>
71 ],
72 [
73 void fct(void)
74 {
75 if (caa_likely(1)) {
76 }
77 }
78 ],
79 [
80 AC_MSG_RESULT([yes])
81 ],
82 [
83 AC_MSG_RESULT([no])
84 AC_MSG_ERROR([Please upgrade your version of liburcu to 0.6.6 or better])
85 ]
86 )
87
88 # urcu - check that URCU lib is available to compilation
89 AC_CHECK_LIB([urcu-bp], [synchronize_rcu_bp], [], [AC_MSG_ERROR([Cannot find liburcu-bp lib. Use [LDFLAGS]=-Ldir to specify its location.])])
90
91 # urcu - check that URCU lib is at least version 0.6
92 AC_CHECK_LIB([urcu-bp], [call_rcu_bp], [], [AC_MSG_ERROR([liburcu 0.6 or newer is needed, please update your version or use [LDFLAGS]=-Ldir to specify the right location.])])
93
94
95 # Check for various supplementary host information (beyond the
96 # triplet) which might affect the library format choices. E.g., we
97 # can be building with `i686-unknown-linux-gnu-gcc -m64'
98
99 case "${host}" in
100 changequote(,)dnl
101 i[34567]86-*-linux*)
102 changequote([,])dnl
103 AC_CACHE_CHECK([if building for x86-64], [ust_cv_i386_is_x86_64],
104 [save_CPPFLAGS="$CPPFLAGS"
105 CPPFLAGS="$CPPFLAGS $CFLAGS"
106 AC_EGREP_CPP([got it], [
107 #if __x86_64__
108 got it
109 #endif
110 ], [ust_cv_i386_is_x86_64=yes],
111 [ust_cv_i386_is_x86_64=no])
112 CPPFLAGS="$save_CPPFLAGS"])
113 ;;
114 esac
115
116 AC_MSG_CHECKING([library format for the host system])
117 case $host_cpu in
118 changequote(,)dnl
119 i[3456]86)
120 changequote([,])dnl
121 if test "$ust_cv_i386_is_x86_64" = yes ; then
122 LIBFORMAT="elf64-x86-64"
123 else
124 LIBFORMAT="elf32-i386"
125 fi
126 ;;
127 x86_64) LIBFORMAT="elf64-x86-64" ;;
128 powerpc) LIBFORMAT="elf32-powerpc" ;;
129 ppc64) LIBFORMAT="elf64-powerpc" ;;
130 powerpc64) LIBFORMAT="elf64-powerpc" ;;
131 s390) LIBFORMAT="elf32-s390"; NO_UNALIGNED_ACCESS=1 ;;
132 s390x) LIBFORMAT="elf64-s390"; NO_UNALIGNED_ACCESS=1 ;;
133 armv5) LIBFORMAT="elf32-littlearm"; NO_UNALIGNED_ACCESS=1 ;;
134 arm) LIBFORMAT="elf32-littlearm"; NO_UNALIGNED_ACCESS=1 ;;
135 mips*) LIBFORMAT=""; NO_UNALIGNED_ACCESS=1;;
136 *) AC_MSG_ERROR([unable to detect library format (unsupported architecture ($host_cpu)?)]) ;;
137 esac
138 AC_SUBST(LIBFORMAT)
139 AC_MSG_RESULT($LIBFORMAT)
140
141 if test "x$host_cpu" = "xarm" ; then
142 AC_MSG_CHECKING([checking for armv5])
143 AC_TRY_COMPILE(
144 [
145 ],
146 [
147 #ifndef __ARM_ARCH_5TEJ__
148 #error "no arm5 here"
149 #endif
150 ],
151 [
152 AC_MSG_RESULT([yes])
153 NO_UNALIGNED_ACCESS=1
154 ]
155 ,
156 [
157 AC_MSG_RESULT([no])
158 ]
159 )
160 fi
161 if test x$NO_UNALIGNED_ACCESS = x ; then
162 AC_DEFINE([HAVE_EFFICIENT_UNALIGNED_ACCESS], [1])
163 fi
164
165 # Set compile flags to java include files if given
166 AC_ARG_WITH(java_jdk, [ --with-java-jdk=DIR use java jdk from DIR. Ex : $JAVA_HOME.], JAVA_SDK=$withval,)
167 if test $JAVA_SDK; then
168 if test -d $JAVA_SDK; then
169 AC_MSG_RESULT([using java include in $JAVA_SDK])
170 SUBDIRS=`find $JAVA_SDK/include -type d`
171 CFLAGS+=" "
172 CFLAGS+=`for x in $SUBDIRS; do echo -n "-I$x "; done`
173 CFLAGS+=" "
174 else
175 AC_MSG_ERROR(Unable to find java include file in $JAVA_JDK)
176 fi
177 fi
178
179 # Check for JNI header files if requested
180 AC_ARG_WITH(jni-interface, [ --with-jni-interface build JNI interface between C and java. Need java include files.
181 [[default=no]]])
182
183 if test -z "$with_jni_interface"; then
184 with_jni_interface=${with_jni_interface_default-no}
185 fi
186
187 if test "$with_jni_interface" = "yes"; then
188 AC_CHECK_HEADERS([jni.h],,AC_MSG_ERROR([
189 missing jni.h
190 Make sure Sun Java or OpenJDK or GCJ is installed and that this header file exists in the system path.
191 Use --with-java-jdk=DIR flag to point to your java include files or desactivate the JNI interface.]))
192 fi
193 AM_CONDITIONAL(BUILD_JNI_INTERFACE, test "$with_jni_interface" = "yes")
194
195 AC_CONFIG_FILES([
196 Makefile
197 include/Makefile
198 include/lttng/version.h
199 doc/Makefile
200 doc/man/Makefile
201 doc/info/Makefile
202 snprintf/Makefile
203 libringbuffer/Makefile
204 liblttng-ust-comm/Makefile
205 liblttng-ust/Makefile
206 liblttng-ust-ctl/Makefile
207 liblttng-ust-fork/Makefile
208 liblttng-ust-java/Makefile
209 liblttng-ust-malloc/Makefile
210 tests/Makefile
211 tests/hello/Makefile
212 tests/ust-basic-tracing/Makefile
213 tests/ust-multi-test/Makefile
214 tests/hello2/Makefile
215 tests/basic/Makefile
216 tests/basic_long/Makefile
217 tests/fork/Makefile
218 tests/simple_include/Makefile
219 tests/snprintf/Makefile
220 tests/test-nevents/Makefile
221 tests/test-libustinstr-malloc/Makefile
222 tests/dlopen/Makefile
223 tests/same_line_marker/Makefile
224 tests/trace_event/Makefile
225 tests/tracepoint/Makefile
226 tests/tracepoint/benchmark/Makefile
227 tests/register_test/Makefile
228 tests/libustctl_function_tests/Makefile
229 tests/exit-fast/Makefile
230 lttng-ust.pc
231 ])
232 AC_OUTPUT
This page took 0.036187 seconds and 5 git commands to generate.