From 815f91186025ec4a0c061a1146e59b4d82a0253c Mon Sep 17 00:00:00 2001 From: serassio <> Date: Sun, 14 May 2006 23:07:45 +0000 Subject: [PATCH] Added usage of configure results --- tools/squidclient.cc | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/tools/squidclient.cc b/tools/squidclient.cc index f8a80c319b..be61de8b43 100644 --- a/tools/squidclient.cc +++ b/tools/squidclient.cc @@ -1,6 +1,6 @@ /* - * $Id: squidclient.cc,v 1.3 2006/05/12 19:14:31 serassio Exp $ + * $Id: squidclient.cc,v 1.4 2006/05/14 17:07:45 serassio Exp $ * * DEBUG: section 0 WWW Client * AUTHOR: Harvest Derived @@ -38,18 +38,43 @@ #ifdef _SQUID_WIN32_ #include #endif +#if HAVE_STDIO_H #include +#endif +#if HAVE_STDLIB_H #include +#endif +#if HAVE_SYS_TYPES_H #include +#endif +#if HAVE_SYS_SOCKET_H #include +#endif +#if HAVE_STRING_H #include +#endif +#if HAVE_UNISTD_H #include +#endif +#if HAVE_NETDB_H && !defined(_SQUID_NETDB_H_) /* protect NEXTSTEP */ +#define _SQUID_NETDB_H_ #include +#endif +#if HAVE_SIGNAL_H #include +#endif +#if HAVE_ERRNO_H #include +#endif +#if HAVE_SYS_STAT_H #include +#endif +#if HAVE_FCNTL_H #include +#endif +#if HAVE_NETINET_IN_H #include +#endif #include "util.h" -- 2.47.3