X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=configure.ac;h=0bcc408139d2d12c4b3e098c8418adbe95ef2174;hb=1fb77d30adb9175a84a4c4b7fc6f575c62b22463;hp=f9738a7e460a5970a3b2cac1e7b8ea8c88268787;hpb=578ce73a104b847b78790041bf30aa9aaa310dd0;p=lttng-ust.git diff --git a/configure.ac b/configure.ac index f9738a7e..0bcc4081 100644 --- a/configure.ac +++ b/configure.ac @@ -46,20 +46,8 @@ AC_CHECK_LIB([dl], [dlopen]) AC_CHECK_LIB([pthread], [pthread_create]) # Check for libuuid -AC_CHECK_LIB([uuid], [uuid_generate], -[ - AC_DEFINE_UNQUOTED([LTTNG_UST_HAVE_LIBUUID], 1, [Has libuuid support.]) -], -[ - # libuuid not found, check for uuid_create in libc. - AC_CHECK_LIB([c], [uuid_create], - [ - AC_DEFINE_UNQUOTED([LTTNG_UST_HAVE_LIBC_UUID], 1, [Has libc uuid support.]) - ], - [ - AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Use [LDFLAGS]=-Ldir to specify its location.]) - ]) -] +AC_CHECK_LIB([uuid], [uuid_generate], [], + [AC_MSG_ERROR([Cannot find libuuid. Use [LDFLAGS]=-Ldir to specify its location.])] ) # Checks for header files.