diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-07-25 16:32:08 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-07-25 16:32:08 +0200 |
commit | 9bdb9a0987d45d74322b7403fe2203cfee983493 (patch) | |
tree | 9214c6e06c36a675bec4eb20645b8fa5abae9ea7 /src/Makefile | |
parent | 5fb9ec5ed7a99e85f304b3450f9a8c6886fc779d (diff) | |
download | vim-git-9bdb9a0987d45d74322b7403fe2203cfee983493.tar.gz |
updated for version 7.3.613v7.3.613
Problem: Including Python's config.c in the build causes trouble. It is
not clear why it was there.
Solution: Omit the config file. (James McCoy)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Makefile b/src/Makefile index 811d4a63e..36a26acd1 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2559,19 +2559,11 @@ objects/if_perl.o: auto/if_perl.c objects/if_perlsfio.o: if_perlsfio.c $(CCC) $(PERL_CFLAGS) -o $@ if_perlsfio.c -objects/py_config.o: $(PYTHON_CONFDIR)/config.c - $(CCC) $(PYTHON_CFLAGS) -o $@ $(PYTHON_CONFDIR)/config.c \ - -I$(PYTHON_CONFDIR) -DHAVE_CONFIG_H -DNO_MAIN - objects/py_getpath.o: $(PYTHON_CONFDIR)/getpath.c $(CCC) $(PYTHON_CFLAGS) -o $@ $(PYTHON_CONFDIR)/getpath.c \ -I$(PYTHON_CONFDIR) -DHAVE_CONFIG_H -DNO_MAIN \ $(PYTHON_GETPATH_CFLAGS) -objects/py3_config.o: $(PYTHON3_CONFDIR)/config.c - $(CCC) $(PYTHON3_CFLAGS) -o $@ $(PYTHON3_CONFDIR)/config.c \ - -I$(PYTHON3_CONFDIR) -DHAVE_CONFIG_H -DNO_MAIN - objects/if_python.o: if_python.c if_py_both.h $(CCC) $(PYTHON_CFLAGS) $(PYTHON_CFLAGS_EXTRA) -o $@ if_python.c |