forked from aniani/vim
patch 8.0.1686: Python does not work when configuring with specific dir
Problem: Python does not work when configuring with specific dir. (Rajdeep) Solution: Do define PYTHON_HOME and PYTHON3_HOME in configure if the Python config dir was specified.
This commit is contained in:
11
src/auto/configure
vendored
11
src/auto/configure
vendored
@@ -5955,7 +5955,7 @@ fi
|
||||
|
||||
# Check whether --with-python-config-dir was given.
|
||||
if test "${with_python_config_dir+set}" = set; then :
|
||||
withval=$with_python_config_dir; vi_cv_path_python_conf="${withval}"
|
||||
withval=$with_python_config_dir; vi_cv_path_python_conf="${withval}"; have_python_config_dir=1
|
||||
fi
|
||||
|
||||
|
||||
@@ -6062,6 +6062,10 @@ $as_echo "$vi_cv_dll_name_python" >&6; }
|
||||
else
|
||||
PYTHON_CFLAGS="-I${vi_cv_path_python_pfx}/include/python${vi_cv_var_python_version} -I${vi_cv_path_python_epfx}/include/python${vi_cv_var_python_version}"
|
||||
fi
|
||||
if test "X$have_python_config_dir" = "X1"; then
|
||||
PYTHON_CFLAGS="${PYTHON_CFLAGS} -DPYTHON_HOME='\"${vi_cv_path_python_pfx}\"'"
|
||||
|
||||
fi
|
||||
PYTHON_SRC="if_python.c"
|
||||
PYTHON_OBJ="objects/if_python.o"
|
||||
if test "${vi_cv_var_python_version}" = "1.4"; then
|
||||
@@ -6312,7 +6316,7 @@ fi
|
||||
|
||||
# Check whether --with-python3-config-dir was given.
|
||||
if test "${with_python3_config_dir+set}" = set; then :
|
||||
withval=$with_python3_config_dir; vi_cv_path_python3_conf="${withval}"
|
||||
withval=$with_python3_config_dir; vi_cv_path_python3_conf="${withval}"; have_python3_config_dir=1
|
||||
fi
|
||||
|
||||
|
||||
@@ -6394,6 +6398,9 @@ $as_echo "$vi_cv_dll_name_python3" >&6; }
|
||||
else
|
||||
PYTHON3_CFLAGS="-I${vi_cv_path_python3_pfx}/include/python${vi_cv_var_python3_version}${vi_cv_var_python3_abiflags} -I${vi_cv_path_python3_epfx}/include/python${vi_cv_var_python3_version}${vi_cv_var_python3_abiflags}"
|
||||
fi
|
||||
if test "X$have_python3_config_dir" = "X1"; then
|
||||
PYTHON3_CFLAGS="${PYTHON3_CFLAGS} -DPYTHON3_HOME='L\"${vi_cv_path_python3_pfx}\"'"
|
||||
fi
|
||||
PYTHON3_SRC="if_python3.c"
|
||||
PYTHON3_OBJ="objects/if_python3.o"
|
||||
|
||||
|
Reference in New Issue
Block a user