summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 831914e)
raw | patch | inline | side by side (parent: 831914e)
author | Yann E. MORIN <yann.morin.1998@free.fr> | |
Tue, 5 Jul 2016 13:31:28 +0000 (15:31 +0200) | ||
committer | Yann E. MORIN <yann.morin.1998@free.fr> | |
Thu, 14 Jul 2016 09:48:02 +0000 (11:48 +0200) |
clock_gettime() is also in -lrt so we also need to
check for it.
Use AC_SEARCH_LIBS() instead of our canned combo of
AC_CHECK_FUNC() + AC_CHECK_LIB(). AC_SEARCH_LIBS()
will automatically add the necessary -l flags to the
LIBS variable, so we don't need out AM_CONDITIONAL()
construct either, now.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
check for it.
Use AC_SEARCH_LIBS() instead of our canned combo of
AC_CHECK_FUNC() + AC_CHECK_LIB(). AC_SEARCH_LIBS()
will automatically add the necessary -l flags to the
LIBS variable, so we don't need out AM_CONDITIONAL()
construct either, now.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
configure.ac | patch | blob | history | |
src/Makefile.am | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index f83f5ab7a15667e263c1a6f30f5a7f8395af3296..aea4efba1b9d9c0d92ad30af0d89dfe3692d5f06 100644 (file)
--- a/configure.ac
+++ b/configure.ac
AC_SUBST(LIBOPING_PC_LIBS_PRIVATE)
-nanosleep_needs_rt="no"
-AC_CHECK_FUNCS(nanosleep, [],
- AC_CHECK_LIB(rt, nanosleep,
- [nanosleep_needs_rt="yes"],
- AC_MSG_ERROR(cannot find nanosleep)))
-AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$nanosleep_needs_rt" = "xyes")
+AC_SEARCH_LIBS([nanosleep],[rt],[],
+ [AC_MSG_ERROR([cannot find nanosleep])])
+AC_SEARCH_LIBS([clock_gettime],[rt],[],
+ [AC_MSG_ERROR([cannot find clock_gettime])])
with_ncurses="no"
AC_CHECK_HEADERS(ncursesw/ncurses.h ncurses.h, [with_ncurses="yes"], [])
diff --git a/src/Makefile.am b/src/Makefile.am
index ec4c398e933f2f06f3ba675035a574217eeea3b0..090d1b2947dda30682d811398a7e526ea640e452 100644 (file)
--- a/src/Makefile.am
+++ b/src/Makefile.am
oping_SOURCES = oping.c
oping_LDADD = liboping.la -lm
-if BUILD_WITH_LIBRT
-oping_LDADD += -lrt
-endif
if BUILD_WITH_LIBNCURSES
bin_PROGRAMS += noping
noping_SOURCES = oping.c
noping_CPPFLAGS = $(AM_CPPFLAGS) -DUSE_NCURSES=1
noping_LDADD = liboping.la -lm $(NCURSES_LIB)
-if BUILD_WITH_LIBRT
-noping_LDADD += -lrt
-endif
endif # BUILD_WITH_LIBNCURSES
install-exec-hook: