diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2022-03-18 12:03:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-18 12:03:22 (GMT) |
commit | 8e3fde728f547f1d32bde8adf62b4c50bb877b9d (patch) | |
tree | 4a019aade6f6b0f42de5eaf421afb9aa7d01a612 /configure.ac | |
parent | d190a9351be577a534a84fd1899f02a9f50f7276 (diff) | |
download | cpython-8e3fde728f547f1d32bde8adf62b4c50bb877b9d.zip cpython-8e3fde728f547f1d32bde8adf62b4c50bb877b9d.tar.gz cpython-8e3fde728f547f1d32bde8adf62b4c50bb877b9d.tar.bz2 |
bpo-46968: Check for 'sys/auxv.h' in the configure script (GH-31961)
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 81262ae..7a37ad2 100644 --- a/configure.ac +++ b/configure.ac @@ -2375,7 +2375,7 @@ AC_DEFINE(STDC_HEADERS, 1, [Define to 1 if you have the ANSI C header files.]) # 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 linux/memfd.h linux/random.h linux/soundcard.h \ + ieeefp.h io.h langinfo.h libintl.h libutil.h linux/auxvec.h sys/auxv.h linux/memfd.h linux/random.h linux/soundcard.h \ linux/tipc.h linux/wait.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 \ sys/endian.h sys/epoll.h sys/event.h sys/eventfd.h sys/file.h sys/ioctl.h sys/kern_control.h \ |