diff options
author | Paul Jakma <paul.jakma@sun.com> | 2007-05-10 16:52:26 +0000 |
---|---|---|
committer | Paul Jakma <paul.jakma@sun.com> | 2007-05-10 16:52:26 +0000 |
commit | 6bd1a7bab32b6b077bee687161c43dc0fe82076f (patch) | |
tree | 6544cb59bf8fd6a40cbe492e3aafe6d8faa3bbf1 | |
parent | 5dcf71df9649cf9c7afd26e0fd3772486ab262f6 (diff) |
[autoconf] add back check for inet_aton
2007-05-10 Paul Jakma <paul.jakma@sun.com>
* configure.ac: Add back check for inet_aton, which got dropped
somehow in previous jumbo patch.
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure.ac | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-05-10 Paul Jakma <paul.jakma@sun.com> + + * configure.ac: Add back check for inet_aton, which got dropped + somehow in previous jumbo patch. + 2007-05-09 Paul Jakma <paul.jakma@sun.com> * configure.ac: sys/conf.h depends on sys/param.h, at least on diff --git a/configure.ac b/configure.ac index 7e493608..f4966d80 100755 --- a/configure.ac +++ b/configure.ac @@ -665,7 +665,7 @@ dnl --------------- dnl other functions dnl --------------- AC_CHECK_FUNCS([dup2 ftruncate getcwd gethostbyname getpagesize gettimeofday \ - inet_ntoa \ + inet_ntoa inet_aton \ memchr memmove memset select socket \ strcasecmp strchr strcspn strdup strerror \ strncasecmp strndup strrchr strspn strstr \ |