summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorstratakis <cstratak@redhat.com>2018-01-23 16:11:24 +0100
committerVictor Stinner <victor.stinner@gmail.com>2018-01-23 16:11:24 +0100
commite768c86ef442ef89004089a8a34ce5909ffb90f2 (patch)
treed332469497ed5a11fb27db5c7dce129544766476 /configure.ac
parent370d04d1dcca50a52d59f40aff4d11434f71df6b (diff)
downloadcpython-git-e768c86ef442ef89004089a8a34ce5909ffb90f2.tar.gz
bpo-32635: Fix a segfault when importing the crypt module with libxcrypt. (#5284)
glibc is deprecating libcrypt in favor of libxcrypt, however python assumes that crypt.h will always be included. This change makes the header inclusion explicit when libxcrypt is present on the system.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 03b0f501af..15ef872a53 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2041,7 +2041,7 @@ dnl AC_MSG_RESULT($cpp_type)
# checks for header files
AC_HEADER_STDC
-AC_CHECK_HEADERS(asm/types.h conio.h direct.h dlfcn.h errno.h \
+AC_CHECK_HEADERS(asm/types.h crypt.h conio.h direct.h dlfcn.h errno.h \
fcntl.h grp.h \
ieeefp.h io.h langinfo.h libintl.h process.h pthread.h \
sched.h shadow.h signal.h stropts.h termios.h \