From 9917c138d9a270deb5820915384fbde751190c2a Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Fri, 30 Aug 2013 23:13:26 +0200 Subject: AUTOTOOLS: More robust detection of inotify. We checked only header file "sys/inotify" for detection whether inotify works. Some platforms do not have built in inotify, but contain library, which provides inotify-compatible interface. This patch adds more robust detection of inotify in configuration time and appends linker flags to Makefile if inotify is provided by library. --- Makefile.am | 1 + 1 file changed, 1 insertion(+) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index b6d2fd0d4..d21c5a717 100644 --- a/Makefile.am +++ b/Makefile.am @@ -630,6 +630,7 @@ sssd_SOURCES = \ src/util/nscd.c sssd_LDADD = \ $(SSSD_LIBS) \ + $(INOTIFY_LIBS) \ $(LIBNL_LIBS) \ $(KEYUTILS_LIBS) \ $(SSSD_INTERNAL_LTLIBS) -- cgit