X-Git-Url: https://git.efficios.com/?a=blobdiff_plain;f=configure.ac;h=50b82a7d4a2a9b82a349616b02ff0d08be564509;hb=refs%2Fheads%2Fstable-1.1;hp=b96e09fee24abd647e54aa2c99bae0d950f26d57;hpb=c99b1910bea848e8f0ae5641bb63b8f4f84f3ec0;p=babeltrace.git diff --git a/configure.ac b/configure.ac index b96e09fe..50b82a7d 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.1.0],[mathieu dot desnoyers at efficios dot com]) +AC_INIT([babeltrace],[1.1.2],[mathieu dot desnoyers at efficios dot com]) AC_CONFIG_AUX_DIR([config]) AC_CANONICAL_TARGET AC_CANONICAL_HOST @@ -10,20 +10,33 @@ 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 AC_PROG_LEX -AC_DEFUN([AC_PROG_BISON], [AC_CHECK_PROGS(BISON, bison, bison)]) +if test ! -f "$srcdir/formats/ctf/metadata/ctf-parser.h"; then + if test x"$YACC" != "xbison -y"; then + AC_MSG_ERROR([[bison not found and is required when building from git. + Please install bison]]) + fi +fi + +if test ! -f "$srcdir/formats/ctf/metadata/ctf-lexer.c"; then + if test x"$LEX" != "xflex"; then + AC_MSG_ERROR([[flex not found and is required when building from git. + Please install flex]]) + fi +fi + AM_PATH_GLIB_2_0(2.22.0, ,AC_MSG_ERROR([glib is required in order to compile BabelTrace - download it from ftp://ftp.gtk.org/pub/gtk]) , gmodule) @@ -98,6 +111,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