From: Karel Zak Date: Wed, 24 Oct 2018 10:18:54 +0000 (+0200) Subject: build-sys: make sure HAVE_TIMER_CREATE defined X-Git-Tag: v2.34-rc1~242 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9a558f9cf68f89f62799b073d0fe7fcdd7aafdba;p=thirdparty%2Futil-linux.git build-sys: make sure HAVE_TIMER_CREATE defined Signed-off-by: Karel Zak --- diff --git a/configure.ac b/configure.ac index 6ed505de53..21b04f5817 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])