diff options
| author | Robert Pluim | 2015-03-02 08:52:22 -0500 |
|---|---|---|
| committer | Ken Brown | 2015-03-02 08:57:54 -0500 |
| commit | 04fb1029e4fd008e853558a910aa2b2710cf82d7 (patch) | |
| tree | 5777a8aa7da99dd2cc167250520fc669d61cd61f | |
| parent | da02eb556a8751c59d5946dec353804bb826c712 (diff) | |
| download | emacs-04fb1029e4fd008e853558a910aa2b2710cf82d7.tar.gz emacs-04fb1029e4fd008e853558a910aa2b2710cf82d7.zip | |
configure.ac: Error out if with-file-notification=w32 is specified on Cygwin
Fixes: 19909
Copyright-paperwork-exempt: yes
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.ac | 5 |
2 files changed, 10 insertions, 0 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2015-03-02 Robert Pluim <rpluim@gmail.com> (tiny change) | ||
| 2 | |||
| 3 | * configure.ac: Error out if with-file-notification=w32 is | ||
| 4 | specified on Cygwin. (Bug#19909) | ||
| 5 | |||
| 1 | 2015-02-27 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2015-02-27 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Don't require GNU putenv | 8 | Don't require GNU putenv |
diff --git a/configure.ac b/configure.ac index e7408f11ed4..d65494ac675 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -2664,6 +2664,11 @@ fi | |||
| 2664 | 2664 | ||
| 2665 | dnl MS Windows native file monitor is available for mingw32 only. | 2665 | dnl MS Windows native file monitor is available for mingw32 only. |
| 2666 | case $with_file_notification,$opsys in | 2666 | case $with_file_notification,$opsys in |
| 2667 | w32,cygwin) | ||
| 2668 | AC_MSG_ERROR([`--with-file-notification=w32' was specified, but | ||
| 2669 | this is only supported on MS-Windows native and MinGW32 builds. | ||
| 2670 | Consider using gfile instead.]) | ||
| 2671 | ;; | ||
| 2667 | w32,* | yes,mingw32) | 2672 | w32,* | yes,mingw32) |
| 2668 | AC_CHECK_HEADER(windows.h) | 2673 | AC_CHECK_HEADER(windows.h) |
| 2669 | if test "$ac_cv_header_windows_h" = yes ; then | 2674 | if test "$ac_cv_header_windows_h" = yes ; then |