From 0ee45d505480f71cca9dd2f5f27bfae371e239d3 Mon Sep 17 00:00:00 2001 From: Paul Cercueil Date: Thu, 19 Sep 2013 17:20:32 +0200 Subject: [PATCH] Disable inotify support if libopk is not found Currently, inotify is used only to detect that OPKs have been added / removed / modified, so it is not needed to enable inotify support when support for OPKs is not compiled in. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 275f800..3173b12 100644 --- a/configure.in +++ b/configure.in @@ -27,7 +27,7 @@ AC_CHECK_LIB(SDL_ttf, TTF_OpenFont) AC_CHECK_LIB(png, png_read_image,,check_png="no") # Check for libopk -AC_CHECK_LIB(opk, opk_open) +AC_CHECK_LIB(opk, opk_open,,INOTIFY=no) # Check for libxdgmime AC_CHECK_LIB(xdgmime, xdg_mime_get_extensions_from_mime_type)