diff options
author | Ken Brown <kbrown@cornell.edu> | 2012-04-12 08:17:20 -0400 |
---|---|---|
committer | Ken Brown <kbrown@cornell.edu> | 2012-04-12 08:17:20 -0400 |
commit | badf86af633711d67785cd11685f0cb209ee3983 (patch) | |
tree | ae538066181cf96e5fb9243a2ebd8070b3fa1707 /configure.in | |
parent | 6decb6c2291942f6e9cce17fb9ae7f4e2c603227 (diff) | |
download | emacs-badf86af633711d67785cd11685f0cb209ee3983.tar.gz emacs-badf86af633711d67785cd11685f0cb209ee3983.tar.bz2 emacs-badf86af633711d67785cd11685f0cb209ee3983.zip |
* configure.in: Warn that Cygwin 1.5 is unsupported. (Bug#10398)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 327427ff390..bd8e3d62299 100644 --- a/configure.in +++ b/configure.in @@ -3800,6 +3800,13 @@ to run if these resources are not installed." echo fi +if test "${opsys}" = "cygwin"; then + case `uname -r` in + 1.5.*) AC_MSG_WARN([[building Emacs on Cygwin 1.5 is not supported.]]) + echo + ;; + esac +fi # Remove any trailing slashes in these variables. [test "${prefix}" != NONE && |