From: Glenn Morris Date: Tue, 30 Oct 2018 00:50:14 +0000 (-0400) Subject: * configure.ac (emacs_config_features): Add notify backends. X-Git-Tag: emacs-27.0.90~4243 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=15059d228c099c7fbccfb04058d58253d40851e7;p=emacs.git * configure.ac (emacs_config_features): Add notify backends. --- diff --git a/configure.ac b/configure.ac index 50e33335289..4a80eb442fa 100644 --- a/configure.ac +++ b/configure.ac @@ -5498,6 +5498,15 @@ for opt in XAW3D XPM JPEG TIFF GIF PNG RSVG CAIRO IMAGEMAGICK SOUND GPM DBUS \ *) continue ;; esac ;; + NOTIFY) + case $val in + *lkqueue*) opt="$opt LIBKQUEUE" ;; + *kqueue*) opt="$opt KQUEUE" ;; + *inotify*) opt="$opt INOTIFY" ;; + *gfile*) opt="$opt GFILENOTIFY" ;; + *w32*) opt="$opt W32NOTIFY" ;; + esac + ;; esac AS_VAR_APPEND([emacs_config_features], ["$optsep$opt"]) optsep=' '