Enable autotools warnings as errors
[lttng-ust.git] / configure.ac
index e7b8358143e29808df4ed7b7907578fb7baf9da1..eaff5ef0dda00456f2fcc02af0a5c2eb1ad40e48 100644 (file)
@@ -9,7 +9,7 @@ m4_define([V_DESC], [[Description TBD]])
 m4_define([V_STRING], [V_MAJOR.V_MINOR.V_PATCH])
 m4_ifdef([V_EXTRA], [m4_append([V_STRING], [-V_EXTRA])])
 
-AC_PREREQ(2.59)
+AC_PREREQ([2.69])
 AC_INIT([lttng-ust], V_STRING, [mathieu dot desnoyers at efficios dot com], [], [https://lttng.org])
 
 dnl Substitute minor/major/patchlevel version numbers
@@ -41,7 +41,7 @@ AC_CONFIG_SRCDIR([include/lttng/tracepoint.h])
 AC_CANONICAL_TARGET
 AC_CANONICAL_HOST
 
-AM_INIT_AUTOMAKE([1.12 foreign dist-bzip2 no-dist-gzip tar-ustar nostdinc])
+AM_INIT_AUTOMAKE([1.12 foreign dist-bzip2 no-dist-gzip tar-ustar nostdinc -Wall -Wno-portability -Werror])
 AM_MAINTAINER_MODE([enable])
 
 # Enable silent rules if available (Introduced in AM 1.11)
@@ -160,6 +160,7 @@ AC_CHECK_FUNCS([ \
        strdup \
        strerror \
        strtol \
+       strtoul \
        sysconf \
 ])
 
@@ -242,7 +243,6 @@ AC_CHECK_LIB([$libdl_name], [dlmopen],
 AC_CHECK_HEADER([dlfcn.h])
 AS_IF([test "x${ac_cv_header_dlfcn_h}" = "xyes"], [
        AC_CHECK_DECLS([RTLD_DI_LINKMAP], [], [], [
-               #define _GNU_SOURCE /* Required on Linux to get GNU extensions */
                #include <dlfcn.h>
        ])
 ], [
@@ -567,18 +567,20 @@ AC_CONFIG_FILES([
        python-lttngust/lttngust/__init__.py
        tools/Makefile
        tests/Makefile
-       tests/ctf-types/Makefile
-       tests/hello/Makefile
-       tests/hello-many/Makefile
-       tests/hello.cxx/Makefile
-       tests/same_line_tracepoint/Makefile
-       tests/snprintf/Makefile
-       tests/ust-elf/Makefile
+       tests/compile/Makefile
+       tests/compile/ctf-types/Makefile
+       tests/compile/hello.cxx/Makefile
+       tests/compile/hello/Makefile
+       tests/compile/hello-many/Makefile
+       tests/compile/same_line_tracepoint/Makefile
+       tests/compile/test-app-ctx/Makefile
        tests/benchmark/Makefile
-       tests/pthread_name/Makefile
+       tests/unit/gcc-weak-hidden/Makefile
+       tests/unit/Makefile
+       tests/unit/pthread_name/Makefile
+       tests/unit/snprintf/Makefile
+       tests/unit/ust-elf/Makefile
        tests/utils/Makefile
-       tests/test-app-ctx/Makefile
-       tests/gcc-weak-hidden/Makefile
        lttng-ust.pc
        lttng-ust-ctl.pc
 ])
@@ -592,7 +594,7 @@ AC_CONFIG_LINKS([
        python-lttngust/lttngust/loghandler.py:python-lttngust/lttngust/loghandler.py
 ])
 
-AC_CONFIG_FILES([tests/ust-elf/test_ust_elf],[chmod +x tests/ust-elf/test_ust_elf])
+AC_CONFIG_FILES([tests/unit/ust-elf/test_ust_elf],[chmod +x tests/unit/ust-elf/test_ust_elf])
 
 AC_OUTPUT
 
This page took 0.024867 seconds and 4 git commands to generate.