X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=configure.ac;h=bc8c325e9ceb9a49f49da8f9155bd6af225a348e;hb=3a54945e83cfa6d87fa2e2d849e715127d76476a;hp=dce1239b03528d08082499b2cee2ebf6d672eba7;hpb=1e4316628fcd8b99f3497ef8b819368a9c65fad8;p=ust.git diff --git a/configure.ac b/configure.ac index dce1239..bc8c325 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ AC_INIT([ust], [0.0], [pierre-marc dot fournier at polymtl dot ca]) AC_CONFIG_AUX_DIR([config]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([0.0 foreign dist-bzip2 no-dist-gzip]) -AC_CONFIG_SRCDIR([ust/ust.c]) +AC_CONFIG_SRCDIR([ustctl/ustctl.c]) AC_CONFIG_HEADERS([config.h]) # Checks for programs. @@ -53,7 +53,7 @@ AC_CHECK_FUNCS([gettimeofday munmap socket strerror strtol]) AC_ARG_WITH(urcu, [ --with-urcu path Path to userspace RCU source], [ AC_CHECK_FILE(["$withval/urcu.h"], [ URCU_CFLAGS="-I$withval" - URCU_LIBS="-L$withval -lurcu" ], + URCU_LIBS="-L$withval -lurcu-bp" ], AC_MSG_ERROR([Cannot find urcu.h in urcu directory])) ], [ PKG_CHECK_MODULES(URCU, [liburcu], , [ @@ -78,9 +78,16 @@ AC_SUBST(KCOMPAT_LIBS) AC_CONFIG_FILES([ Makefile libust/Makefile - hello/Makefile + tests/Makefile + tests/hello/Makefile + tests/hello2/Makefile + tests/basic/Makefile + tests/basic_long/Makefile + tests/fork/Makefile libmallocwrap/Makefile + libinterfork/Makefile ustd/Makefile - ust/Makefile + ustctl/Makefile + java/Makefile ]) AC_OUTPUT