mirror of
https://github.com/curl/curl.git
synced 2026-05-30 03:47:27 +03:00
build: set HAVE_STDINT_H if stdint.h is available
Ref: #15907 Closes #16585
This commit is contained in:
parent
8fbd372e0d
commit
1ecf2f1113
3 changed files with 5 additions and 0 deletions
|
|
@ -1676,6 +1676,7 @@ check_include_file("poll.h" HAVE_POLL_H)
|
|||
check_include_file("pwd.h" HAVE_PWD_H)
|
||||
check_include_file("stdatomic.h" HAVE_STDATOMIC_H)
|
||||
check_include_file("stdbool.h" HAVE_STDBOOL_H)
|
||||
check_include_file("stdint.h" HAVE_STDINT_H)
|
||||
check_include_file("strings.h" HAVE_STRINGS_H)
|
||||
check_include_file("stropts.h" HAVE_STROPTS_H)
|
||||
check_include_file("termio.h" HAVE_TERMIO_H)
|
||||
|
|
|
|||
|
|
@ -3902,6 +3902,7 @@ AC_CHECK_HEADERS(
|
|||
libgen.h \
|
||||
locale.h \
|
||||
stdbool.h \
|
||||
stdint.h \
|
||||
sys/filio.h \
|
||||
sys/eventfd.h,
|
||||
dnl to do if not found
|
||||
|
|
|
|||
|
|
@ -469,6 +469,9 @@
|
|||
/* Define to 1 if you have the sendmmsg function. */
|
||||
#cmakedefine HAVE_SENDMMSG 1
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#cmakedefine HAVE_STDINT_H 1
|
||||
|
||||
/* Define to 1 if you have the 'fsetxattr' function. */
|
||||
#cmakedefine HAVE_FSETXATTR 1
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue