diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-12-17 15:34:53 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-12-17 15:34:53 +0100 |
commit | 8def26a0f5f5535e9af64e715cb80845fc8ec322 (patch) | |
tree | 62d08928afc65ae0adcbeff1061705c345c50652 /src/configure.in | |
parent | 75e3ad019933f4879137775549261bf51985ab7d (diff) | |
download | vim-git-8def26a0f5f5535e9af64e715cb80845fc8ec322.tar.gz |
patch 7.4.976v7.4.976
Problem: When compiling Vim for MSYS2 (linked with msys-2.0.dll), the Win32
clipboard is not enabled.
Solution: Recognize MSYS like CYGWIN. (Ken Takata)
Diffstat (limited to 'src/configure.in')
-rw-r--r-- | src/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configure.in b/src/configure.in index 3934f88c5..7b901d828 100644 --- a/src/configure.in +++ b/src/configure.in @@ -2792,9 +2792,9 @@ dnl end of GUI-checking dnl --------------------------------------------------------------------------- dnl Check for Cygwin, which needs an extra source file if not using X11 -AC_MSG_CHECKING(for CYGWIN environment) +AC_MSG_CHECKING(for CYGWIN or MSYS environment) case `uname` in - CYGWIN*) CYGWIN=yes; AC_MSG_RESULT(yes) + CYGWIN*|MSYS*) CYGWIN=yes; AC_MSG_RESULT(yes) AC_MSG_CHECKING(for CYGWIN clipboard support) if test "x$with_x" = "xno" ; then OS_EXTRA_SRC=winclip.c; OS_EXTRA_OBJ=objects/winclip.o |