summaryrefslogtreecommitdiffstats
path: root/src/Make_cyg_ming.mak
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-09-08 20:28:45 +0200
committerBram Moolenaar <Bram@vim.org>2016-09-08 20:28:45 +0200
commit0eaadec6b275a8add49242e1940855fcd154ba64 (patch)
tree8ea6e6e7b1da50e6555bf549b74419627d29a8e1 /src/Make_cyg_ming.mak
parent169ebb080454357279ad5ad21ac532deaec605e8 (diff)
patch 7.4.2345v7.4.2345
Problem: For MinGW RUBY_API_VER_LONG isn't set correctly. Many default version numbers are outdated. Solution: Set RUBY_API_VER_LONG to RUBY_VER_LONG. Use latest stable releases for defaults. (Ken Takata)
Diffstat (limited to 'src/Make_cyg_ming.mak')
-rw-r--r--src/Make_cyg_ming.mak28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak
index 28fa9b03f9..63f7fa9a32 100644
--- a/src/Make_cyg_ming.mak
+++ b/src/Make_cyg_ming.mak
@@ -156,10 +156,10 @@ endif
# Perl interface:
# PERL=[Path to Perl directory] (Set inside Make_cyg.mak or Make_ming.mak)
# DYNAMIC_PERL=yes (to load the Perl DLL dynamically)
-# PERL_VER=[Perl version, eg 56, 58, 510] (default is 56)
+# PERL_VER=[Perl version, eg 56, 58, 510] (default is 524)
ifdef PERL
ifndef PERL_VER
-PERL_VER=56
+PERL_VER=524
endif
ifndef DYNAMIC_PERL
DYNAMIC_PERL=yes
@@ -188,14 +188,14 @@ endif
# Lua interface:
# LUA=[Path to Lua directory] (Set inside Make_cyg.mak or Make_ming.mak)
# DYNAMIC_LUA=yes (to load the Lua DLL dynamically)
-# LUA_VER=[Lua version, eg 51, 52] (default is 51)
+# LUA_VER=[Lua version, eg 51, 52] (default is 53)
ifdef LUA
ifndef DYNAMIC_LUA
DYNAMIC_LUA=yes
endif
ifndef LUA_VER
-LUA_VER=51
+LUA_VER=53
endif
ifeq (no,$(DYNAMIC_LUA))
@@ -207,7 +207,7 @@ endif
# MzScheme interface:
# MZSCHEME=[Path to MzScheme directory] (Set inside Make_cyg.mak or Make_ming.mak)
# DYNAMIC_MZSCHEME=yes (to load the MzScheme DLL dynamically)
-# MZSCHEME_VER=[MzScheme version] (default is 205_000)
+# MZSCHEME_VER=[MzScheme version] (default is 3m_a0solc (6.6))
# MZSCHEME_DEBUG=no
ifdef MZSCHEME
ifndef DYNAMIC_MZSCHEME
@@ -215,7 +215,7 @@ DYNAMIC_MZSCHEME=yes
endif
ifndef MZSCHEME_VER
-MZSCHEME_VER=205_000
+MZSCHEME_VER=3m_a0solc
endif
# for version 4.x we need to generate byte-code for Scheme base
@@ -263,7 +263,7 @@ endif
# Python interface:
# PYTHON=[Path to Python directory] (Set inside Make_cyg.mak or Make_ming.mak)
# DYNAMIC_PYTHON=yes (to load the Python DLL dynamically)
-# PYTHON_VER=[Python version, eg 22, 23, ..., 27] (default is 22)
+# PYTHON_VER=[Python version, eg 22, 23, ..., 27] (default is 27)
ifdef PYTHON
ifndef DYNAMIC_PYTHON
DYNAMIC_PYTHON=yes
@@ -296,14 +296,14 @@ endif
# Python3 interface:
# PYTHON3=[Path to Python3 directory] (Set inside Make_cyg.mak or Make_ming.mak)
# DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically)
-# PYTHON3_VER=[Python3 version, eg 31, 32] (default is 31)
+# PYTHON3_VER=[Python3 version, eg 31, 32] (default is 35)
ifdef PYTHON3
ifndef DYNAMIC_PYTHON3
DYNAMIC_PYTHON3=yes
endif
ifndef PYTHON3_VER
-PYTHON3_VER=31
+PYTHON3_VER=35
endif
ifndef DYNAMIC_PYTHON3_DLL
DYNAMIC_PYTHON3_DLL=python$(PYTHON3_VER).dll
@@ -328,18 +328,18 @@ endif
# TCL interface:
# TCL=[Path to TCL directory] (Set inside Make_cyg.mak or Make_ming.mak)
# DYNAMIC_TCL=yes (to load the TCL DLL dynamically)
-# TCL_VER=[TCL version, eg 83, 84] (default is 83)
-# TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.3)
+# TCL_VER=[TCL version, eg 83, 84] (default is 86)
+# TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.6)
# You must set TCL_VER_LONG when you set TCL_VER.
ifdef TCL
ifndef DYNAMIC_TCL
DYNAMIC_TCL=yes
endif
ifndef TCL_VER
-TCL_VER = 83
+TCL_VER = 86
endif
ifndef TCL_VER_LONG
-TCL_VER_LONG = 8.3
+TCL_VER_LONG = 8.6
endif
TCLINC += -I$(TCL)/include
endif
@@ -367,7 +367,7 @@ ifndef RUBY_VER_LONG
RUBY_VER_LONG = 2.2.0
endif
ifndef RUBY_API_VER_LONG
-RUBY_API_VER_LONG = $(RUBY_API_VER_LONG)
+RUBY_API_VER_LONG = $(RUBY_VER_LONG)
endif
ifndef RUBY_API_VER
RUBY_API_VER = $(subst .,,$(RUBY_API_VER_LONG))