diff options
author | justdan6 <134341009+justdan6@users.noreply.github.com> | 2023-07-28 23:29:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-28 23:29:31 (GMT) |
commit | 80aebd54c8c562d3d318c124ec735c5bf7f81d65 (patch) | |
tree | e94acb9646354421354aec9be31ddf202c37c233 /configure.ac | |
parent | da151fdc7ac4a6d30740e4ef18071936a136790d (diff) | |
download | cpython-80aebd54c8c562d3d318c124ec735c5bf7f81d65.zip cpython-80aebd54c8c562d3d318c124ec735c5bf7f81d65.tar.gz cpython-80aebd54c8c562d3d318c124ec735c5bf7f81d65.tar.bz2 |
[3.12] gh-106881: Check for linux/limits.h before including it (#107397) (#107414)
* Check for linux/limits.h before including it
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
(cherry picked from commit 11c055f5ff1a353de6d2e77f2af24aaa782878ba)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 630db4b..ba768ae 100644 --- a/configure.ac +++ b/configure.ac @@ -2848,7 +2848,7 @@ AC_DEFINE([STDC_HEADERS], [1], # checks for header files AC_CHECK_HEADERS([ \ alloca.h asm/types.h bluetooth.h conio.h crypt.h direct.h dlfcn.h endian.h errno.h fcntl.h grp.h \ - ieeefp.h io.h langinfo.h libintl.h libutil.h linux/auxvec.h sys/auxv.h linux/fs.h linux/memfd.h \ + ieeefp.h io.h langinfo.h libintl.h libutil.h linux/auxvec.h sys/auxv.h linux/fs.h linux/limits.h linux/memfd.h \ linux/random.h linux/soundcard.h \ linux/tipc.h linux/wait.h netdb.h net/ethernet.h netinet/in.h netpacket/packet.h poll.h process.h pthread.h pty.h \ sched.h setjmp.h shadow.h signal.h spawn.h stropts.h sys/audioio.h sys/bsdtty.h sys/devpoll.h \ |