aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Pluim2015-03-02 08:52:22 -0500
committerKen Brown2015-03-02 08:57:54 -0500
commit04fb1029e4fd008e853558a910aa2b2710cf82d7 (patch)
tree5777a8aa7da99dd2cc167250520fc669d61cd61f
parentda02eb556a8751c59d5946dec353804bb826c712 (diff)
downloademacs-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--ChangeLog5
-rw-r--r--configure.ac5
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0bfdfbbd8b9..5e5c922fd45 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12015-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
12015-02-27 Paul Eggert <eggert@cs.ucla.edu> 62015-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
2665dnl MS Windows native file monitor is available for mingw32 only. 2665dnl MS Windows native file monitor is available for mingw32 only.
2666case $with_file_notification,$opsys in 2666case $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