1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 12:20:20 +02:00

* configure.in: check whether inet_aton is declared.

* acconfig.h: added MISSING_INET_ATON_DECL.
This commit is contained in:
Gary Houston 2000-10-01 10:31:10 +00:00
parent ed0e0e3097
commit 99c01f4ad8
3 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2000-10-01 Gary Houston <ghouston@arglist.com>
* configure.in: check whether inet_aton is declared.
* acconfig.h: added MISSING_INET_ATON_DECL.
2000-09-20 Keisuke Nishida <kxn30@po.cwru.edu>
* libguile.h: #include "libguile/properties.h".

View file

@ -146,6 +146,9 @@
/* Define if the operating system supplies usleep without declaring it. */
#undef MISSING_USLEEP_DECL
/* Define if the operating system supplies inet_aton without declaring it. */
#undef MISSING_INET_ATON_DECL
/* Define if the system headers declare usleep to return void. */
#undef USLEEP_RETURNS_VOID

View file

@ -196,6 +196,7 @@ GUILE_FUNC_DECLARED(strptime, time.h)
GUILE_FUNC_DECLARED(bzero, string.h)
GUILE_FUNC_DECLARED(sleep, unistd.h)
GUILE_FUNC_DECLARED(usleep, unistd.h)
GUILE_FUNC_DECLARED(inet_aton, arpa/inet.h)
### On some systems usleep has no return value. If it does have one,
### we'd like to return it; otherwise, we'll fake it.