diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-25 17:42:45 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-25 17:42:45 +0200 |
commit | 6fc45b55fc317330193e460dc18732b7d6b15a87 (patch) | |
tree | 6aa82215e31f1f7e9d97d4af87774959aa0dc655 /src/Makefile | |
parent | 7fd7320014fb34788ef53fe7c78521b5c25e052e (diff) | |
download | vim-git-6fc45b55fc317330193e460dc18732b7d6b15a87.tar.gz |
Prepare for 7.3b release. Fix src/Makefile enabling python3 by default.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index f9120938c..a8991bc14 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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 \ |