diff options
author | Yang Tse <yangsita@gmail.com> | 2008-11-14 15:26:27 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-11-14 15:26:27 +0000 |
commit | 3517eba632e781f207e1ec09fcdfe10447f8abd5 (patch) | |
tree | b37bf3ff6135e609ae52f47f1341378550a84b9d /m4 | |
parent | 2cd44abafceb9e1e14fc8d4509594dd12d2e4986 (diff) |
fix typo affecting inclusion of <arpa/inet.h> in configure
checks for inet_ntoa_r() inet_ntop() and inet_pton()
Diffstat (limited to 'm4')
-rw-r--r-- | m4/curl-functions.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/curl-functions.m4 b/m4/curl-functions.m4 index b25f9b686..02d3701cd 100644 --- a/m4/curl-functions.m4 +++ b/m4/curl-functions.m4 @@ -22,7 +22,7 @@ #*************************************************************************** # File version for 'aclocal' use. Keep it a single number. -# serial 38 +# serial 39 dnl CURL_INCLUDES_ARPA_INET @@ -43,7 +43,7 @@ curl_includes_arpa_inet="\ # include <netinet/in.h> #endif #ifdef HAVE_ARPA_INET_H -# include <arpa_inet.h> +# include <arpa/inet.h> #endif /* includes end */" AC_CHECK_HEADERS( |