comparison src/Make_cyg_ming.mak @ 13018:8862bf5adf7b v8.0.1385

patch 8.0.1385: Python 3.5 is getting old commit https://github.com/vim/vim/commit/59eb016dff3fd4f764cfe326c80a9b840f0e1a02 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 10 18:17:44 2017 +0100 patch 8.0.1385: Python 3.5 is getting old Problem: Python 3.5 is getting old. Solution: Make Python 3.6 the default. (Ken Takata, closes https://github.com/vim/vim/issues/2429)
author Christian Brabandt <cb@256bit.org>
date Sun, 10 Dec 2017 18:30:05 +0100
parents 1a450ce6980c
children cfce9ac1d1e8
comparison
equal deleted inserted replaced
13017:c4ea348666d2 13018:8862bf5adf7b
314 endif 314 endif
315 315
316 # Python3 interface: 316 # Python3 interface:
317 # PYTHON3=[Path to Python3 directory] (Set inside Make_cyg.mak or Make_ming.mak) 317 # PYTHON3=[Path to Python3 directory] (Set inside Make_cyg.mak or Make_ming.mak)
318 # DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically) 318 # DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically)
319 # PYTHON3_VER=[Python3 version, eg 31, 32] (default is 35) 319 # PYTHON3_VER=[Python3 version, eg 31, 32] (default is 36)
320 ifdef PYTHON3 320 ifdef PYTHON3
321 ifndef DYNAMIC_PYTHON3 321 ifndef DYNAMIC_PYTHON3
322 DYNAMIC_PYTHON3=yes 322 DYNAMIC_PYTHON3=yes
323 endif 323 endif
324 324
325 ifndef PYTHON3_VER 325 ifndef PYTHON3_VER
326 PYTHON3_VER=35 326 PYTHON3_VER=36
327 endif 327 endif
328 ifndef DYNAMIC_PYTHON3_DLL 328 ifndef DYNAMIC_PYTHON3_DLL
329 DYNAMIC_PYTHON3_DLL=python$(PYTHON3_VER).dll 329 DYNAMIC_PYTHON3_DLL=python$(PYTHON3_VER).dll
330 endif 330 endif
331 ifdef PYTHON3_HOME 331 ifdef PYTHON3_HOME