diff options
author | Gunter Knauf <gk@gknw.de> | 2007-07-11 09:08:03 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2007-07-11 09:08:03 +0000 |
commit | 2a1345ae9f36c92a0de6550d03b47b540af706e2 (patch) | |
tree | 21fc75132252f82191050107133a079fbb426027 /lib | |
parent | cf61c8d659692185eb61451ada7a4b90043527bb (diff) |
added netdb.h for NetWare CLIB since gethostname() is defined there.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http_ntlm.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c index 573f7ad83..863ddf521 100644 --- a/lib/http_ntlm.c +++ b/lib/http_ntlm.c @@ -48,6 +48,10 @@ #include <unistd.h> #endif +#if (defined(NETWARE) && !defined(__NOVELL_LIBC__)) +#include <netdb.h> +#endif + #include "urldata.h" #include "easyif.h" /* for Curl_convert_... prototypes */ #include "sendf.h" |