From: "Dirk-Jan C. Binnema" <djcb@xxxxxxxxxxxxxxx> glibc before 2.17 (e.g., fedora 18) requires -lrt for clock_gettime. AC_SEARCH_LIBS adds it to LIBS in that case --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 050d30d..403e323 100644 --- a/configure.ac +++ b/configure.ac @@ -40,6 +40,7 @@ AC_ARG_ENABLE(threads, AC_HELP_STRING([--enable-threads], AC_CHECK_FUNC(signalfd, dummy=yes, AC_MSG_ERROR(signalfd support is required)) +AC_SEARCH_LIBS(clock_gettime,rt) AC_CHECK_FUNC(clock_gettime, dummy=yes, AC_MSG_ERROR(realtime clock support is required)) -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html