Move SIGCHLD definition to compat.h so that other files can use it.
[srvx.git] / src / compat.h
1 #ifndef COMPAT_H
2 #define COMPAT_H
3
4 #include "config.h"
5
6 /* AIX's compiler requires this to be the first thing in the compiled
7  * files.  Yay for braindead compilers. */
8 #if defined(__GNUC__) && !defined(HAVE_ALLOCA_H)
9 # define alloca __builtin_alloca
10 #else
11 # if defined(HAVE_ALLOCA_H)
12 #  include <alloca.h>
13 # else
14 #  ifdef _AIX
15 #   pragma alloca
16 #  else
17 #   ifndef alloca
18 char *alloca();
19 #   endif
20 #  endif
21 # endif
22 #endif
23
24 /* These are ANSI C89 headers, so everybody should have them.  If
25  * they're missing, we probably don't care much about the platform.
26  * If we do, we can add an autoconf test and try to patch around;
27  * this is the right file for that, after all :)
28  */
29 #include <assert.h>
30 #include <ctype.h>
31 #include <errno.h>
32 #include <limits.h>
33 #include <setjmp.h>
34 #include <signal.h>
35 #include <stdarg.h>
36 #include <stddef.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <string.h>
40
41 #ifdef TIME_WITH_SYS_TIME
42 # include <sys/time.h>
43 # include <time.h>
44 #else
45 # ifdef HAVE_SYS_TIME_H
46 #  include <sys/time.h>
47 # else
48 #  include <time.h>
49 # endif
50 #endif
51
52 #ifdef HAVE_SYS_TYPES_H
53 #include <sys/types.h>
54 #endif
55
56 #ifdef HAVE_SYS_SOCKET_H
57 #include <sys/socket.h>
58 #endif
59
60 #ifdef HAVE_NETDB_H
61 #include <netdb.h>
62 #endif
63
64 #ifdef HAVE_WINSOCK2_H
65 /* Windows XP+ only -- older versions lack getaddrinfo() etc. */
66 # define _WIN32_WINNT 0x0501
67 # include <winsock2.h>
68 #endif
69
70 #ifdef HAVE_WS2TCPIP_H
71 # include <ws2tcpip.h>
72 #endif
73
74 #ifdef HAVE_UNISTD_H
75 #include <unistd.h>
76 #endif
77
78 #ifdef HAVE_VA_COPY
79 #define VA_COPY(DEST, SRC) va_copy(DEST, SRC)
80 #elif HAVE___VA_COPY
81 #define VA_COPY(DEST, SRC) __va_copy(DEST, SRC)
82 #else
83 #define VA_COPY(DEST, SRC) memcpy(&(DEST), &(SRC), sizeof(DEST))
84 #endif
85
86 #ifndef HAVE_GETTIMEOFDAY
87 struct timezone;
88 extern int gettimeofday(struct timeval * tv, struct timezone * tz);
89 #endif
90
91 #ifndef HAVE_GETLOCALTIME_R
92 extern struct tm *localtime_r(const time_t *timep, struct tm *result);
93 #endif
94
95 #ifndef HAVE_MEMCPY
96 /* this should use size_t, but some systems don't define it */
97 extern void * memcpy(void * dest, void const * src, unsigned long n);
98 #endif
99
100 #ifndef HAVE_MEMSET
101 /* this should use size_t, but some systems don't define it */
102 extern void * memset(void * dest, int c, unsigned long n);
103 #endif
104
105 #ifndef HAVE_STRDUP
106 extern char * strdup(char const * str);
107 #endif
108
109 #ifndef HAVE_STRERROR
110 extern char const * strerror(int errornum);
111 #endif
112
113 #ifndef HAVE_STRUCT_ADDRINFO
114
115 struct addrinfo {
116     int ai_flags;
117     int ai_family;
118     int ai_socktype;
119     int ai_protocol;
120     size_t ai_addrlen;
121     struct sockaddr *ai_addr;
122     char *ai_canonname;
123     struct addrinfo *ai_next;
124 };
125
126 #define AI_PASSIVE 1
127 #define AI_CANONNAME 2
128 #define AI_NUMERICHOST 4
129
130 #endif /* !defined(HAVE_STRUCT_ADDRINFO) */
131
132 #ifndef HAVE_GETADDRINFO
133
134 int getaddrinfo(const char *node, const char *service, const struct addrinfo *hints, struct addrinfo **res);
135 int getnameinfo(const struct sockaddr *sa, socklen_t salen, char *host, size_t hostlen, char *serv, size_t servlen, int flags);
136 void freeaddrinfo(struct addrinfo *res);
137
138 #endif
139
140 #ifndef HAVE_GAI_STRERROR
141 const char *gai_strerror(int errcode);
142 #endif
143
144 #ifndef EINPROGRESS
145 # ifdef WSAEINPROGRESS
146 #  define EINPROGRESS WSAEINPROGRESS
147 #  define EHOSTUNREACH WSAEHOSTUNREACH
148 #  define ECONNREFUSED WSAECONNREFUSED
149 #  define ECONNRESET WSAECONNRESET
150 #  define ETIMEDOUT WSAETIMEDOUT
151 # endif
152 #endif
153
154 #ifndef SIGCHLD
155 # define SIGCHLD SIGCLD
156 #endif
157
158 #endif /* COMPAT_H */