diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-07-15 13:09:51 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-07-15 13:09:51 +0200 |
commit | 54ee2b8741e10906393cf85450d69d91edb3f2eb (patch) | |
tree | ce6734177065c594725025140b9e3a6d67e747df /src/configure.in | |
parent | 4da95d377f1883de6e2b88889acb47824b4f589d (diff) | |
download | vim-git-54ee2b8741e10906393cf85450d69d91edb3f2eb.tar.gz |
updated for version 7.3.245v7.3.245
Problem: Python 3.2 libraries not correctly detected.
Solution: Add the suffix to the library name. (Niclas Zeising)
Diffstat (limited to 'src/configure.in')
-rw-r--r-- | src/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configure.in b/src/configure.in index 173818805..52e0600c8 100644 --- a/src/configure.in +++ b/src/configure.in @@ -1068,7 +1068,7 @@ eof dnl -- delete the lines from make about Entering/Leaving directory eval "`cd ${PYTHON3_CONFDIR} && make -f "${tmp_mkf}" __ | sed '/ directory /d'`" rm -f -- "${tmp_mkf}" - vi_cv_path_python3_plibs="-L${PYTHON3_CONFDIR} -lpython${vi_cv_var_python3_version}" + vi_cv_path_python3_plibs="-L${PYTHON3_CONFDIR} -lpython${vi_cv_var_python3_version}${vi_cv_var_python3_abiflags}" vi_cv_path_python3_plibs="${vi_cv_path_python3_plibs} ${python3_BASEMODLIBS} ${python3_LIBS} ${python3_SYSLIBS}" dnl remove -ltermcap, it can conflict with an earlier -lncurses vi_cv_path_python3_plibs=`echo $vi_cv_path_python3_plibs | sed s/-ltermcap//` |