summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-03-24 14:06:15 +0100
committerBram Moolenaar <Bram@vim.org>2018-03-24 14:06:15 +0100
commit16d7eced1a08565a9837db8067c7b9db5ed68854 (patch)
treea8f26d8d1bfe4d0d62442682ca394d6ca5e8614c /src
parent75b0a888e41bcda4163072f41bb7b5471fef7651 (diff)
patch 8.0.1635: undefining _POSIX_THREADS causes problems with Python 3v8.0.1635
Problem: Undefining _POSIX_THREADS causes problems with Python 3. (Micah Bucy, closes #2748) Solution: Remove the lines.
Diffstat (limited to 'src')
-rw-r--r--src/if_python3.c5
-rw-r--r--src/version.c2
2 files changed, 2 insertions, 5 deletions
diff --git a/src/if_python3.c b/src/if_python3.c
index 02d913492c..59c115dd8d 100644
--- a/src/if_python3.c
+++ b/src/if_python3.c
@@ -34,11 +34,6 @@
#include <limits.h>
-/* Python.h defines _POSIX_THREADS itself (if needed) */
-#ifdef _POSIX_THREADS
-# undef _POSIX_THREADS
-#endif
-
#if defined(_WIN32) && defined(HAVE_FCNTL_H)
# undef HAVE_FCNTL_H
#endif
diff --git a/src/version.c b/src/version.c
index ca668c1b48..b2959e30ad 100644
--- a/src/version.c
+++ b/src/version.c
@@ -767,6 +767,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1635,
+/**/
1634,
/**/
1633,