0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

Prepare for 7.3b release. Fix src/Makefile enabling python3 by default.

This commit is contained in:
Bram Moolenaar
2010-07-25 17:42:45 +02:00
parent 7fd7320014
commit 6fc45b55fc
6 changed files with 55 additions and 24 deletions

View File

@@ -409,7 +409,7 @@ CClink = $(CC)
# If both python2.x and python3.x are enabled then the linking will be via
# dlopen(), dlsym(), dlclose(), i.e. pythonX.Y.so must be available
#CONF_OPT_PYTHON = --enable-pythoninterp
CONF_OPT_PYTHON3 = --enable-python3interp
#CONF_OPT_PYTHON3 = --enable-python3interp
# RUBY
# Uncomment this when you want to include the Ruby interface.
@@ -3024,11 +3024,11 @@ objects/if_perlsfio.o: if_perlsfio.c vim.h auto/config.h feature.h os_unix.h \
objects/if_python.o: if_python.c vim.h auto/config.h feature.h os_unix.h \
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
regexp.h gui.h gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h \
globals.h farsi.h arabic.h
globals.h farsi.h arabic.h if_py_both.h
objects/if_python3.o: if_python3.c vim.h auto/config.h feature.h os_unix.h \
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
regexp.h gui.h gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h \
globals.h farsi.h arabic.h
globals.h farsi.h arabic.h if_py_both.h
objects/if_tcl.o: if_tcl.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h globals.h farsi.h \

View File

@@ -19,9 +19,9 @@
#define VIM_VERSION_MINOR_STR "3"
#define VIM_VERSION_100 (VIM_VERSION_MAJOR * 100 + VIM_VERSION_MINOR)
#define VIM_VERSION_BUILD 271
#define VIM_VERSION_BUILD_BCD 0x10f
#define VIM_VERSION_BUILD_STR "271"
#define VIM_VERSION_BUILD 272
#define VIM_VERSION_BUILD_BCD 0x110
#define VIM_VERSION_BUILD_STR "272"
#define VIM_VERSION_PATCHLEVEL 0
#define VIM_VERSION_PATCHLEVEL_STR "0"
/* Used by MacOS port should be one of: development, alpha, beta, final */
@@ -36,5 +36,5 @@
#define VIM_VERSION_NODOT "vim73b"
#define VIM_VERSION_SHORT "7.3b"
#define VIM_VERSION_MEDIUM "7.3b BETA"
#define VIM_VERSION_LONG "VIM - Vi IMproved 7.3b BETA (2010 Jul 18)"
#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.3b BETA (2010 Jul 18, compiled "
#define VIM_VERSION_LONG "VIM - Vi IMproved 7.3b BETA (2010 Jul 25)"
#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.3b BETA (2010 Jul 25, compiled "