1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-29 08:20:20 +02:00

(AC_CHECK_FUNCS): Add dirfd.

This commit is contained in:
Kevin Ryde 2006-02-25 21:20:17 +00:00
parent 360a680ee6
commit 1ec2078756

View file

@ -864,9 +864,10 @@ AC_CHECK_HEADERS(floatingpoint.h ieeefp.h nan.h)
# Reasons for testing: # Reasons for testing:
# asinh, acosh, atanh, trunc - C99 standard, generally not available on # asinh, acosh, atanh, trunc - C99 standard, generally not available on
# older systems # older systems
# dirfd - mainly BSD derived, not in older systems
# sincos - GLIBC extension # sincos - GLIBC extension
# #
AC_CHECK_FUNCS(asinh acosh atanh copysign finite sincos trunc) AC_CHECK_FUNCS(asinh acosh atanh copysign dirfd finite sincos trunc)
# C99 specifies isinf and isnan as macros. # C99 specifies isinf and isnan as macros.
# HP-UX provides only macros, no functions. # HP-UX provides only macros, no functions.