[core] show_features() show inotify or kqueue

show_features() show inotify or kqueue when present
This commit is contained in:
Glenn Strauss 2023-08-15 00:00:07 -04:00
parent 52a509ff2b
commit a611e8b242
1 changed files with 8 additions and 0 deletions

View File

@ -913,11 +913,19 @@ static void show_features (void) {
#else
"\t- PAM support\n"
#endif
#if !defined(HAVE_SYS_INOTIFY_H) && !defined(HAVE_KQUEUE)
#ifdef HAVE_FAM_H
"\t+ FAM support\n"
#else
"\t- FAM support\n"
#endif
#endif
#ifdef HAVE_SYS_INOTIFY_H
"\t+ inotify support\n"
#endif
#ifdef HAVE_KQUEUE
"\t+ kqueue support\n"
#endif
#ifdef HAVE_LUA_H
"\t+ LUA support\n"
#else