X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;ds=sidebyside;f=configure.ac;h=8a636075a756813a29b8ef88ed93dbc75574de63;hb=e9452def10b0edc7dd064bf6f739a61fdd5229f3;hp=19f16a63b1f87c20cd3b760f881b44c17d81d953;hpb=aa968dde60d1c3cff4dcebcca4b6f5c2b9737829;p=babeltrace.git diff --git a/configure.ac b/configure.ac index 19f16a63..8a636075 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_INIT([babeltrace],[1.0.0],[mathieu dot desnoyers at efficios dot com]) +AC_INIT([babeltrace],[1.1.1],[mathieu dot desnoyers at efficios dot com]) AC_CONFIG_AUX_DIR([config]) AC_CANONICAL_TARGET AC_CANONICAL_HOST @@ -10,14 +10,14 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AC_CONFIG_MACRO_DIR([m4]) -AM_PROG_MKDIR_P +AC_PROG_MKDIR_P AC_CONFIG_HEADERS([config.h]) AC_SYS_LARGEFILE # Checks for programs. -AC_PROG_CC +AC_PROG_CC_STDC AC_PROG_MAKE_SET LT_INIT AC_PROG_YACC @@ -37,6 +37,15 @@ AC_FUNC_MALLOC AC_FUNC_MMAP AC_CHECK_FUNCS([bzero gettimeofday munmap strtoul]) +# Check for MinGW32. +MINGW32=no +case $host in + *-*-mingw*) + MINGW32=yes;; +esac + +AM_CONDITIONAL([BABELTRACE_BUILD_WITH_MINGW], [test "x$MINGW32" = "xyes"]) + # Check for libuuid AC_CHECK_LIB([uuid], [uuid_generate], [ @@ -98,6 +107,7 @@ AC_CONFIG_FILES([ formats/ctf/types/Makefile formats/ctf-text/Makefile formats/ctf-text/types/Makefile + formats/ctf-metadata/Makefile formats/bt-dummy/Makefile formats/ctf/metadata/Makefile converter/Makefile @@ -109,5 +119,6 @@ AC_CONFIG_FILES([ tests/lib/Makefile extras/Makefile extras/valgrind/Makefile + babeltrace.pc ]) AC_OUTPUT