diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2008-12-09 20:33:31 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2008-12-09 20:33:31 +0000 |
commit | ee23e202e6a8cfe06b76b141b4e1464ddcaa519a (patch) | |
tree | 2cc0d9010b2c5596ca5a4696eca2df78781c5671 /usr.sbin/httpd | |
parent | aaed5b099da331dec541f18ab4d6107d19a7a42d (diff) |
update ap_config_auto.h for new libc
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r-- | usr.sbin/httpd/src/include/ap_config_auto.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/usr.sbin/httpd/src/include/ap_config_auto.h b/usr.sbin/httpd/src/include/ap_config_auto.h index 9b6163ffe27..8c460078960 100644 --- a/usr.sbin/httpd/src/include/ap_config_auto.h +++ b/usr.sbin/httpd/src/include/ap_config_auto.h @@ -51,6 +51,16 @@ #define HAVE_SYS_PARAM_H 1 #endif +/* determine: isinf() found in libc */ +#ifndef HAVE_ISINF +#define HAVE_ISINF 1 +#endif + +/* determine: isnan() found in libc */ +#ifndef HAVE_ISNAN +#define HAVE_ISNAN 1 +#endif + /* sizeof(off_t) == sizeof(quad_t) on OpenBSD */ #ifndef AP_OFF_T_IS_QUAD #define AP_OFF_T_IS_QUAD 1 |