aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2016-01-03 16:34:32 +0000
committerMichael Albinus2016-01-03 16:34:32 +0000
commit21ad7279e47f0bc33acf36f0ac27f92808232dbd (patch)
tree689963805f110f27e3a82514f080db876fc1d3a5
parentef069ca8cc5377ed745bd2ad2521e544c57974cd (diff)
downloademacs-21ad7279e47f0bc33acf36f0ac27f92808232dbd.tar.gz
emacs-21ad7279e47f0bc33acf36f0ac27f92808232dbd.zip
* configure.ac: Add error message for gfile on Nextstep.
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 94007a49537..cddebd409b0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2746,7 +2746,10 @@ dnl has been added in glib 2.24. It has been tested under
2746dnl GNU/Linux only. 2746dnl GNU/Linux only.
2747case $with_file_notification,$NOTIFY_OBJ in 2747case $with_file_notification,$NOTIFY_OBJ in
2748 gfile,* | yes,) 2748 gfile,* | yes,)
2749 if test "${HAVE_NS}" != yes; then 2749 if test "${HAVE_NS}" = yes; then
2750 AC_MSG_ERROR(['--with-file-notification=gfile' is not supported.
2751Consider kqueue instead.])
2752 else
2750 EMACS_CHECK_MODULES([GFILENOTIFY], [gio-2.0 >= 2.24]) 2753 EMACS_CHECK_MODULES([GFILENOTIFY], [gio-2.0 >= 2.24])
2751 if test "$HAVE_GFILENOTIFY" = "yes"; then 2754 if test "$HAVE_GFILENOTIFY" = "yes"; then
2752 AC_DEFINE(HAVE_GFILENOTIFY, 1, [Define to 1 if using GFile.]) 2755 AC_DEFINE(HAVE_GFILENOTIFY, 1, [Define to 1 if using GFile.])