diff options
author | Christian Heimes <christian@python.org> | 2021-11-26 16:16:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-26 15:16:54 +0100 |
commit | 8caceb7a474bf32cddfd25fba25b531ff65f4365 (patch) | |
tree | 910efc6bfc66a2d9b665c73eb88c0e88cfc5650c /PC | |
parent | bpo-45760: Remove PyNumber_InMatrixMultiply (GH-29751) (diff) | |
download | cpython-8caceb7a474bf32cddfd25fba25b531ff65f4365.tar.gz cpython-8caceb7a474bf32cddfd25fba25b531ff65f4365.tar.bz2 cpython-8caceb7a474bf32cddfd25fba25b531ff65f4365.zip |
bpo-40280: Add configure check for socket shutdown (GH-29795)
Diffstat (limited to 'PC')
-rw-r--r-- | PC/pyconfig.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index b3e73d4dabe..5d8d9f36184 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -517,6 +517,9 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ /* Define if you have siginterrupt. */ /* #undef HAVE_SIGINTERRUPT */ +/* Define to 1 if you have the `shutdown' function. */ +#define HAVE_SHUTDOWN 1 + /* Define if you have symlink. */ /* #undef HAVE_SYMLINK */ |