X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=configure.ac;h=e428a4970b121d847f5636bd36ee699416706bd0;hb=a09dac63957396890b1085cac0fee92ecc5db87a;hp=73e95bb8bacc55458cf01762840840f925f5e5be;hpb=8c98245fd779d9aa1ae9b33524bc504f91d5dcae;p=ust.git diff --git a/configure.ac b/configure.ac index 73e95bb..e428a49 100644 --- a/configure.ac +++ b/configure.ac @@ -2,12 +2,12 @@ # Process this file with autoconf to produce a configure script. #AC_PREREQ([2.63]) -AC_INIT([ust], [0.0], [pierre-marc dot fournier at polymtl dot ca]) +AC_INIT([ust], [0.3], [pierre-marc dot fournier at polymtl dot ca]) AC_CONFIG_AUX_DIR([config]) AC_CANONICAL_TARGET AC_CANONICAL_HOST AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([0.0 foreign dist-bzip2 no-dist-gzip]) +AM_INIT_AUTOMAKE([foreign]) AC_CONFIG_SRCDIR([ustctl/ustctl.c]) AC_CONFIG_HEADERS([config.h]) @@ -55,7 +55,8 @@ AC_CHECK_FUNCS([gettimeofday munmap socket strerror strtol]) # URCU # urcu - check if we just find the headers it out of the box. -AC_CHECK_HEADERS([urcu-bp.h], [], [AC_MSG_ERROR([Cannot find [URCU] headers (urcu-bp.h). Use [CFLAGS]=-Idir to specify their location.])]) +AC_CHECK_HEADERS([urcu-bp.h], [], [AC_MSG_ERROR([Cannot find [URCU] headers (urcu-bp.h). Use [CFLAGS]=-Idir to specify their location. +This error can also occur when the liburcu package's configure script has not been run.])]) # urcu - check that URCU lib is available to compilation AC_CHECK_LIB([urcu-bp], [synchronize_rcu], [], [AC_MSG_ERROR([Cannot find liburcu-bp lib. Use [LDFLAGS]=-Ldir to specify its location.])]) @@ -117,9 +118,13 @@ AC_CONFIG_FILES([ tests/basic_long/Makefile tests/fork/Makefile tests/simple_include/Makefile + tests/snprintf/Makefile + tests/test-nevents/Makefile + tests/test-libmallocwrap/Makefile libmallocwrap/Makefile libinterfork/Makefile ustd/Makefile ustctl/Makefile + snprintf/Makefile ]) AC_OUTPUT