diff options
| author | Michael Albinus | 2016-01-03 16:34:32 +0000 |
|---|---|---|
| committer | Michael Albinus | 2016-01-03 16:34:32 +0000 |
| commit | 21ad7279e47f0bc33acf36f0ac27f92808232dbd (patch) | |
| tree | 689963805f110f27e3a82514f080db876fc1d3a5 | |
| parent | ef069ca8cc5377ed745bd2ad2521e544c57974cd (diff) | |
| download | emacs-21ad7279e47f0bc33acf36f0ac27f92808232dbd.tar.gz emacs-21ad7279e47f0bc33acf36f0ac27f92808232dbd.zip | |
* configure.ac: Add error message for gfile on Nextstep.
| -rw-r--r-- | configure.ac | 5 |
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 | |||
| 2746 | dnl GNU/Linux only. | 2746 | dnl GNU/Linux only. |
| 2747 | case $with_file_notification,$NOTIFY_OBJ in | 2747 | case $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. | ||
| 2751 | Consider 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.]) |