aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2011-07-24 04:39:43 +0200
committerYang Tse <yangsita@gmail.com>2011-07-24 04:39:43 +0200
commitef2176109fca302ed89193716b62c3a7113552a3 (patch)
tree6b791e483e9022b7657ea9bd06ed1cbdee7958ab /lib
parent27b8814017a19009b22e4b51aea1ae711ec20459 (diff)
errno.h inclusion conditionally done in setup_once.h
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.netware1
-rw-r--r--lib/asyn-thread.c1
-rw-r--r--lib/config-amigaos.h3
-rw-r--r--lib/config-dos.h1
-rw-r--r--lib/config-mac.h1
-rw-r--r--lib/config-os400.h3
-rw-r--r--lib/config-riscos.h3
-rw-r--r--lib/config-vms.h3
-rw-r--r--lib/config-win32.h3
-rw-r--r--lib/config-win32ce.h3
-rw-r--r--lib/connect.c1
-rw-r--r--lib/easy.c1
-rw-r--r--lib/hostip4.c3
-rw-r--r--lib/http_ntlm.c1
-rw-r--r--lib/inet_ntop.c1
-rw-r--r--lib/inet_pton.c1
-rw-r--r--lib/ldap.c1
-rw-r--r--lib/qssl.c1
-rw-r--r--lib/sendf.c1
-rw-r--r--lib/setup.h1
-rw-r--r--lib/setup_once.h3
-rw-r--r--lib/strerror.c1
-rw-r--r--lib/strtoofft.c1
-rw-r--r--lib/transfer.c1
-rw-r--r--lib/url.c1
25 files changed, 24 insertions, 17 deletions
diff --git a/lib/Makefile.netware b/lib/Makefile.netware
index 2cc7c9ecc..91c8ae7f1 100644
--- a/lib/Makefile.netware
+++ b/lib/Makefile.netware
@@ -498,6 +498,7 @@ endif
@echo $(DL)#define USE_MANUAL 1$(DL) >> $@
@echo $(DL)#define HAVE_ARPA_INET_H 1$(DL) >> $@
@echo $(DL)#define HAVE_ASSERT_H 1$(DL) >> $@
+ @echo $(DL)#define HAVE_ERRNO_H 1$(DL) >> $@
@echo $(DL)#define HAVE_ERR_H 1$(DL) >> $@
@echo $(DL)#define HAVE_FCNTL_H 1$(DL) >> $@
@echo $(DL)#define HAVE_GETHOSTBYADDR 1$(DL) >> $@
diff --git a/lib/asyn-thread.c b/lib/asyn-thread.c
index 8cb92d76e..0fcbc49ae 100644
--- a/lib/asyn-thread.c
+++ b/lib/asyn-thread.c
@@ -23,7 +23,6 @@
#include "setup.h"
#include <string.h>
-#include <errno.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
diff --git a/lib/config-amigaos.h b/lib/config-amigaos.h
index 99b96d656..1474ba915 100644
--- a/lib/config-amigaos.h
+++ b/lib/config-amigaos.h
@@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -26,6 +26,7 @@
#define HAVE_ARPA_INET_H 1
#define HAVE_CLOSESOCKET_CAMEL 1
+#define HAVE_ERRNO_H 1
#define HAVE_GETHOSTBYADDR 1
#define HAVE_INET_ADDR 1
#define HAVE_INTTYPES_H 1
diff --git a/lib/config-dos.h b/lib/config-dos.h
index 35d21aae2..694a30465 100644
--- a/lib/config-dos.h
+++ b/lib/config-dos.h
@@ -40,6 +40,7 @@
#define PACKAGE "curl"
#define HAVE_ARPA_INET_H 1
+#define HAVE_ERRNO_H 1
#define HAVE_FCNTL_H 1
#define HAVE_GETADDRINFO 1
#define HAVE_GETNAMEINFO 1
diff --git a/lib/config-mac.h b/lib/config-mac.h
index 80af84e52..72e8260d1 100644
--- a/lib/config-mac.h
+++ b/lib/config-mac.h
@@ -30,6 +30,7 @@
#define OS "mac"
+#define HAVE_ERRNO_H 1
#define HAVE_NETINET_IN_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_SYS_SELECT_H 1
diff --git a/lib/config-os400.h b/lib/config-os400.h
index 8dba1e4cd..4d2730928 100644
--- a/lib/config-os400.h
+++ b/lib/config-os400.h
@@ -97,6 +97,9 @@
/* Define if you have the <des.h> header file. */
#undef HAVE_DES_H
+/* Define if you have the <errno.h> header file. */
+#define HAVE_ERRNO_H
+
/* Define if you have the <err.h> header file. */
#undef HAVE_ERR_H
diff --git a/lib/config-riscos.h b/lib/config-riscos.h
index 5ccf68124..127dbdb0a 100644
--- a/lib/config-riscos.h
+++ b/lib/config-riscos.h
@@ -92,6 +92,9 @@
/* Define if you have the <des.h> header file. */
#undef HAVE_DES_H
+/* Define if you have the <errno.h> header file. */
+#define HAVE_ERRNO_H
+
/* Define if you have the <err.h> header file. */
#undef HAVE_ERR_H
diff --git a/lib/config-vms.h b/lib/config-vms.h
index e3844f83b..75c77d1b1 100644
--- a/lib/config-vms.h
+++ b/lib/config-vms.h
@@ -143,6 +143,9 @@
/* Define if you have the uname function. */
#define HAVE_UNAME 1
+/* Define if you have the <errno.h> header file. */
+#define HAVE_ERRNO_H 1
+
/* Define if you have the <err.h> header file. */
#define HAVE_ERR_H 1
diff --git a/lib/config-win32.h b/lib/config-win32.h
index 6768dda3c..c4fe1b391 100644
--- a/lib/config-win32.h
+++ b/lib/config-win32.h
@@ -39,6 +39,9 @@
/* Define if you have the <crypto.h> header file. */
/* #define HAVE_CRYPTO_H 1 */
+/* Define if you have the <errno.h> header file. */
+#define HAVE_ERRNO_H 1
+
/* Define if you have the <err.h> header file. */
/* #define HAVE_ERR_H 1 */
diff --git a/lib/config-win32ce.h b/lib/config-win32ce.h
index 872334286..93e3b8999 100644
--- a/lib/config-win32ce.h
+++ b/lib/config-win32ce.h
@@ -39,6 +39,9 @@
/* Define if you have the <crypto.h> header file. */
/* #define HAVE_CRYPTO_H 1 */
+/* Define if you have the <errno.h> header file. */
+#define HAVE_ERRNO_H 1
+
/* Define if you have the <err.h> header file. */
/* #define HAVE_ERR_H 1 */
diff --git a/lib/connect.c b/lib/connect.c
index a9185978c..b9b6c7589 100644
--- a/lib/connect.c
+++ b/lib/connect.c
@@ -69,7 +69,6 @@
#endif
#include <stdio.h>
-#include <errno.h>
#include <string.h>
#define _MPRINTF_REPLACE /* use our functions only */
diff --git a/lib/easy.c b/lib/easy.c
index ac037d266..657b04201 100644
--- a/lib/easy.c
+++ b/lib/easy.c
@@ -28,7 +28,6 @@
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
-#include <errno.h>
#include "strequal.h"
diff --git a/lib/hostip4.c b/lib/hostip4.c
index 67aefda29..5d8519818 100644
--- a/lib/hostip4.c
+++ b/lib/hostip4.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -23,7 +23,6 @@
#include "setup.h"
#include <string.h>
-#include <errno.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c
index 189bb8af3..166d169c9 100644
--- a/lib/http_ntlm.c
+++ b/lib/http_ntlm.c
@@ -49,7 +49,6 @@
#include <sys/types.h>
#include <sys/wait.h>
#include <signal.h>
-#include <errno.h>
#endif
#if (defined(NETWARE) && !defined(__NOVELL_LIBC__))
diff --git a/lib/inet_ntop.c b/lib/inet_ntop.c
index 34cae801a..bb175b417 100644
--- a/lib/inet_ntop.c
+++ b/lib/inet_ntop.c
@@ -35,7 +35,6 @@
#include <arpa/inet.h>
#endif
#include <string.h>
-#include <errno.h>
#define _MPRINTF_REPLACE /* use our functions only */
#include <curl/mprintf.h>
diff --git a/lib/inet_pton.c b/lib/inet_pton.c
index d08c7c666..5a781abf5 100644
--- a/lib/inet_pton.c
+++ b/lib/inet_pton.c
@@ -33,7 +33,6 @@
#include <arpa/inet.h>
#endif
#include <string.h>
-#include <errno.h>
#include "inet_pton.h"
diff --git a/lib/ldap.c b/lib/ldap.c
index 62a9ffc19..ccdd83e6b 100644
--- a/lib/ldap.c
+++ b/lib/ldap.c
@@ -41,7 +41,6 @@
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
-#include <errno.h>
#ifdef CURL_LDAP_WIN /* Use Windows LDAP implementation. */
# include <winldap.h>
diff --git a/lib/qssl.c b/lib/qssl.c
index 60ea6da23..0e263ccd1 100644
--- a/lib/qssl.c
+++ b/lib/qssl.c
@@ -24,7 +24,6 @@
#ifdef USE_QSOSSL
#include <qsossl.h>
-#include <errno.h>
#include <string.h>
#ifdef HAVE_LIMITS_H
# include <limits.h>
diff --git a/lib/sendf.c b/lib/sendf.c
index 0172ae7c3..50b194b66 100644
--- a/lib/sendf.c
+++ b/lib/sendf.c
@@ -25,7 +25,6 @@
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
-#include <errno.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> /* required for send() & recv() prototypes */
diff --git a/lib/setup.h b/lib/setup.h
index 91a655713..2aaf564dc 100644
--- a/lib/setup.h
+++ b/lib/setup.h
@@ -279,7 +279,6 @@
#ifdef HAVE_ASSERT_H
#include <assert.h>
#endif
-#include <errno.h>
#ifdef __TANDEM /* for nsr-tandem-nsk systems */
#include <floss.h>
diff --git a/lib/setup_once.h b/lib/setup_once.h
index b449807db..751102bed 100644
--- a/lib/setup_once.h
+++ b/lib/setup_once.h
@@ -42,7 +42,10 @@
#include <string.h>
#include <stdarg.h>
#include <ctype.h>
+
+#ifdef HAVE_ERRNO_H
#include <errno.h>
+#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
diff --git a/lib/strerror.c b/lib/strerror.c
index 0a883421e..adee28891 100644
--- a/lib/strerror.c
+++ b/lib/strerror.c
@@ -36,7 +36,6 @@
#include <curl/curl.h>
#include <stdlib.h>
#include <string.h>
-#include <errno.h>
#ifdef USE_LIBIDN
#include <idna.h>
diff --git a/lib/strtoofft.c b/lib/strtoofft.c
index 55a6ffd0d..dd897cf16 100644
--- a/lib/strtoofft.c
+++ b/lib/strtoofft.c
@@ -34,7 +34,6 @@
#ifdef NEED_CURL_STRTOLL
#include <stdlib.h>
#include <ctype.h>
-#include <errno.h>
/* Range tests can be used for alphanum decoding if characters are consecutive,
like in ASCII. Else an array is scanned. Determine this condition now. */
diff --git a/lib/transfer.c b/lib/transfer.c
index 1c2afc4a2..6889fa7c7 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -28,7 +28,6 @@
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
-#include <errno.h>
#include "strtoofft.h"
#include "strequal.h"
diff --git a/lib/url.c b/lib/url.c
index adb96c4cc..b28446c3b 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -29,7 +29,6 @@
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
-#include <errno.h>
#ifdef WIN32
#include <time.h>