]> git.eshelyaron.com Git - emacs.git/commitdiff
* configure.ac (emacs_config_features): Add notify backends.
authorGlenn Morris <rgm@gnu.org>
Tue, 30 Oct 2018 00:50:14 +0000 (20:50 -0400)
committerGlenn Morris <rgm@gnu.org>
Tue, 30 Oct 2018 00:50:14 +0000 (20:50 -0400)
configure.ac

index 50e33335289def2e06ea3b260b2f7af9db135606..4a80eb442fa575e7a7113468fd0678f73d8a85ff 100644 (file)
@@ -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=' '