From 9a558f9cf68f89f62799b073d0fe7fcdd7aafdba Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 24 Oct 2018 12:18:54 +0200 Subject: build-sys: make sure HAVE_TIMER_CREATE defined Signed-off-by: Karel Zak --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 6ed505de5..21b04f581 100644 --- a/configure.ac +++ b/configure.ac @@ -544,14 +544,16 @@ AC_CHECK_FUNCS([timer_create], [AC_CHECK_LIB([rt], [timer_create], [ have_timer="yes" REALTIME_LIBS="-lrt" + AC_DEFINE_UNQUOTED([HAVE_TIMER_CREATE], [1], [Define if timer_create exist in -lrt]) ],[ AC_SEARCH_LIBS([timer_create], [rt], [ AC_MSG_RESULT(yes) have_timer="yes" REALTIME_LIBS="-lrt -lpthread" + AC_DEFINE_UNQUOTED([HAVE_TIMER_CREATE], [1], [Define if timer_create exist in -lrt -lpthread]) ],[], [-lpthread] ) - ])] + ])] ) AC_SUBST([REALTIME_LIBS]) -- cgit v1.2.3-55-g7522