Skip to content

Commit

Permalink
add checks for sys/auxv.h, linux/auxvec.h (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjia56 authored Dec 2, 2024
1 parent 6a80bc8 commit 9bf5abf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmake/ConfigureChecks.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ check_include_files(langinfo.h HAVE_LANGINFO_H)
check_include_files(libintl.h HAVE_LIBINTL_H)
check_include_files(libutil.h HAVE_LIBUTIL_H)
check_include_files(linux/tipc.h HAVE_LINUX_TIPC_H)
check_include_files(linux/auxvec.h HAVE_LINUX_AUXVEC_H)
check_include_files(locale.h HAVE_LOCALE_H)

check_include_files(sys/socket.h HAVE_SYS_SOCKET_H)
Expand Down Expand Up @@ -350,6 +351,7 @@ check_include_files(string.h HAVE_STRING_H) # libffi and cpython
check_include_files(stropts.h HAVE_STROPTS_H)
check_include_files(sysexits.h HAVE_SYSEXITS_H)
check_include_files(sys/audioio.h HAVE_SYS_AUDIOIO_H)
check_include_files(sys/auxv.h HAVE_SYS_AUXV_H)
check_include_files(sys/bsdtty.h HAVE_SYS_BSDTTY_H)
check_include_files(sys/epoll.h HAVE_SYS_EPOLL_H)
check_include_files(sys/event.h HAVE_SYS_EVENT_H)
Expand Down
6 changes: 6 additions & 0 deletions cmake/config-unix/pyconfig.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,9 @@
/* Define to 1 if you have the `linkat' function. [Python 3] */
#cmakedefine HAVE_LINKAT 1

/* Define to 1 if you have the <linux/auxvec.h> header file. [Python 3.9] */
#cmakedefine HAVE_LINUX_AUXVEC_H 1

/* Define to 1 if you have the <linux/can/bcm.h> header file. [Python 3] */
#cmakedefine HAVE_LINUX_CAN_BCM_H 1

Expand Down Expand Up @@ -1254,6 +1257,9 @@
/* Define to 1 if you have the <sys/audioio.h> header file. */
#cmakedefine HAVE_SYS_AUDIOIO_H 1

/* Define to 1 if you have the <sys/auxv.h> header file. [Python 3.9] */
#cmakedefine HAVE_SYS_AUXV_H 1

/* Define to 1 if you have the <sys/bsdtty.h> header file. */
#cmakedefine HAVE_SYS_BSDTTY_H 1

Expand Down

0 comments on commit 9bf5abf

Please sign in to comment.