mirror of
https://github.com/vim/vim.git
synced 2025-09-30 04:44:14 -04:00
patch 7.4.2210
Problem: On OSX configure mixes up a Python framework and the Unix layout. Solution: Make configure check properly. (Tim D. Smith, closes #980)
This commit is contained in:
2
src/auto/configure
vendored
2
src/auto/configure
vendored
@@ -5988,7 +5988,7 @@ __:
|
|||||||
eof
|
eof
|
||||||
eval "`cd ${PYTHON_CONFDIR} && make -f "${tmp_mkf}" __ | sed '/ directory /d'`"
|
eval "`cd ${PYTHON_CONFDIR} && make -f "${tmp_mkf}" __ | sed '/ directory /d'`"
|
||||||
rm -f -- "${tmp_mkf}"
|
rm -f -- "${tmp_mkf}"
|
||||||
if test "x$MACOSX" = "xyes" && ${vi_cv_path_python} -c \
|
if test "x$MACOSX" = "xyes" && test -n "${python_PYTHONFRAMEWORK}" && ${vi_cv_path_python} -c \
|
||||||
"import sys; sys.exit(${vi_cv_var_python_version} < 2.3)"; then
|
"import sys; sys.exit(${vi_cv_var_python_version} < 2.3)"; then
|
||||||
vi_cv_path_python_plibs="-framework Python"
|
vi_cv_path_python_plibs="-framework Python"
|
||||||
if test "x${vi_cv_path_python}" != "x/usr/bin/python" && test -n "${python_PYTHONFRAMEWORKPREFIX}"; then
|
if test "x${vi_cv_path_python}" != "x/usr/bin/python" && test -n "${python_PYTHONFRAMEWORKPREFIX}"; then
|
||||||
|
@@ -1193,7 +1193,7 @@ eof
|
|||||||
dnl -- delete the lines from make about Entering/Leaving directory
|
dnl -- delete the lines from make about Entering/Leaving directory
|
||||||
eval "`cd ${PYTHON_CONFDIR} && make -f "${tmp_mkf}" __ | sed '/ directory /d'`"
|
eval "`cd ${PYTHON_CONFDIR} && make -f "${tmp_mkf}" __ | sed '/ directory /d'`"
|
||||||
rm -f -- "${tmp_mkf}"
|
rm -f -- "${tmp_mkf}"
|
||||||
if test "x$MACOSX" = "xyes" && ${vi_cv_path_python} -c \
|
if test "x$MACOSX" = "xyes" && test -n "${python_PYTHONFRAMEWORK}" && ${vi_cv_path_python} -c \
|
||||||
"import sys; sys.exit(${vi_cv_var_python_version} < 2.3)"; then
|
"import sys; sys.exit(${vi_cv_var_python_version} < 2.3)"; then
|
||||||
vi_cv_path_python_plibs="-framework Python"
|
vi_cv_path_python_plibs="-framework Python"
|
||||||
if test "x${vi_cv_path_python}" != "x/usr/bin/python" && test -n "${python_PYTHONFRAMEWORKPREFIX}"; then
|
if test "x${vi_cv_path_python}" != "x/usr/bin/python" && test -n "${python_PYTHONFRAMEWORKPREFIX}"; then
|
||||||
|
@@ -763,6 +763,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2210,
|
||||||
/**/
|
/**/
|
||||||
2209,
|
2209,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user