diff options
author | Glenn Morris <rgm@gnu.org> | 2018-10-29 20:50:14 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2018-10-29 20:50:14 -0400 |
commit | 15059d228c099c7fbccfb04058d58253d40851e7 (patch) | |
tree | e71fa25d2ffd152bc787f7f55394606f5290e8dc /configure.ac | |
parent | 0c6e9a00046ffb1421563b06030a6ce3025ce1fa (diff) | |
download | emacs-15059d228c099c7fbccfb04058d58253d40851e7.tar.gz |
* configure.ac (emacs_config_features): Add notify backends.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 9 insertions, 0 deletions
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=' ' |