diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-06-03 21:06:09 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2013-06-03 21:06:09 +0200 |
commit | 7f203aa1fde2bc9ec43aa05a939525cdab149832 (patch) | |
tree | 43e175dbe784faa04b4f3b284b1c62a89c26822a /nt/config.nt | |
parent | 55a87246bae97514b6e927b9401b2b79592b8b91 (diff) | |
download | emacs-7f203aa1fde2bc9ec43aa05a939525cdab149832.tar.gz |
* configure.ac (HAVE_GFILENOTIFY): Do not change $LIBS.
(GFILENOTIFY_CFLAGS, GFILENOTIFY_LIBS): Substitute.
* nt/config.nt: Add HAVE_GFILENOTIFY, HAVE_W32NOTIFY and USE_FILE_NOTIFY.
* src/Makefile.in (GFILENOTIFY_CFLAGS, GFILENOTIFY_LIBS): New variables.
(ALL_CFLAGS): Add $(GFILENOTIFY_CFLAGS).
(LIBES): Add $(GFILENOTIFY_LIBS).
* src/w32inevt.c (handle_file_notifications): Add dummy implementation
for !HAVE_W32NOTIFY.
* src/w32term.c: Wrap code with HAVE_W32NOTIFY.
Diffstat (limited to 'nt/config.nt')
-rw-r--r-- | nt/config.nt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/nt/config.nt b/nt/config.nt index 4380f2b86c5..95b56f2dc64 100644 --- a/nt/config.nt +++ b/nt/config.nt @@ -547,6 +547,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ /* Define to 1 if you have the `gettimeofday' function. */ #define HAVE_GETTIMEOFDAY 1 +/* Define to 1 if using GFile. */ +#undef HAVE_GFILENOTIFY + /* Define to 1 if you have the `get_current_dir_name' function. */ #undef HAVE_GET_CURRENT_DIR_NAME @@ -1141,6 +1144,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ /* Define to 1 if you have the <vfork.h> header file. */ #undef HAVE_VFORK_H +/* Define to 1 to use w32notify. */ +#define HAVE_W32NOTIFY 1 + /* Define to 1 if you have the <wchar.h> header file. */ #undef HAVE_WCHAR_H @@ -1497,6 +1503,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ /* Define to nonzero if you want access control list support. */ #undef USE_ACL +/* Define to 1 if using file notifications. */ +#define USE_FILE_NOTIFY 1 + /* Define to 1 if using GTK. */ #undef USE_GTK |