1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-06-30 21:13:51 +03:00

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.
This commit is contained in:
Paul Cercueil 2013-09-19 17:20:32 +02:00
parent 0e4180460b
commit 0ee45d5054

View File

@ -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)