summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-08-09 22:06:13 +0200
committerBram Moolenaar <Bram@vim.org>2010-08-09 22:06:13 +0200
commitb61f95c31f37ae3c5daef6596b55e4b9dec62eb8 (patch)
tree26d5793388a89a80bcddd30cb72ab16e7a2d5809 /src/Makefile
parent82d1c33a8ab759aeca7efb462ecca66c8fa0ac96 (diff)
downloadvim-git-b61f95c31f37ae3c5daef6596b55e4b9dec62eb8.tar.gz
When building with both Python 2 and Python 3 don't use RTLD_GLOBAL, so that
both may work.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index 43153781a..4a66bfad5 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -408,6 +408,8 @@ CClink = $(CC)
# ln -s python3 python3.1
# 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
+# However, this may still cause problems, such as "import termios" failing.
+# Build two separate versions of Vim in that case.
#CONF_OPT_PYTHON = --enable-pythoninterp
#CONF_OPT_PYTHON3 = --enable-python3interp