Revision 41, 1.8 kB
(checked in by jesus, 12 years ago)
|
autoconf support
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
Line | |
---|
1 |
#ifndef _SLD_DEFINES_H |
---|
2 |
#define _SLD_DEFINES_H |
---|
3 |
|
---|
4 |
#ifdef HAVE_SYS_TYPES_H |
---|
5 |
#include <sys/types.h> |
---|
6 |
#endif |
---|
7 |
#ifdef HAVE_SYS_STAT_H |
---|
8 |
#include <sys/stat.h> |
---|
9 |
#endif |
---|
10 |
#ifdef HAVE_STDLIB_H |
---|
11 |
#include <stdlib.h> |
---|
12 |
#endif |
---|
13 |
#ifdef HAVE_STRING_H |
---|
14 |
#include <string.h> |
---|
15 |
#endif |
---|
16 |
#ifdef HAVE_MEMORY_H |
---|
17 |
#include <memory.h> |
---|
18 |
#endif |
---|
19 |
#ifdef HAVE_STRINGS_H |
---|
20 |
#include <strings.h> |
---|
21 |
#endif |
---|
22 |
#ifdef HAVE_INTTYPES_H |
---|
23 |
#include <inttypes.h> |
---|
24 |
#endif |
---|
25 |
#ifdef HAVE_STDINT_H |
---|
26 |
#include <stdint.h> |
---|
27 |
#endif |
---|
28 |
#ifdef HAVE_UNISTD_H |
---|
29 |
#include <unistd.h> |
---|
30 |
#endif |
---|
31 |
#ifdef HAVE_ARPA_INET_H |
---|
32 |
#include <arpa/inet.h> |
---|
33 |
#endif |
---|
34 |
#ifdef HAVE_ARPA_NAMESER_H |
---|
35 |
#include <arpa/nameser.h> |
---|
36 |
#endif |
---|
37 |
#ifdef HAVE_ASSERT_H |
---|
38 |
#include <assert.h> |
---|
39 |
#endif |
---|
40 |
#ifdef HAVE_CTYPE_H |
---|
41 |
#include <ctype.h> |
---|
42 |
#endif |
---|
43 |
#ifdef HAVE_DLFCN_H |
---|
44 |
#include <dlfcn.h> |
---|
45 |
#endif |
---|
46 |
#ifdef HAVE_ERRNO_H |
---|
47 |
#include <errno.h> |
---|
48 |
#endif |
---|
49 |
#ifdef HAVE_FCNTL_H |
---|
50 |
#include <fcntl.h> |
---|
51 |
#endif |
---|
52 |
#ifdef HAVE_LIMITS_H |
---|
53 |
#include <limits.h> |
---|
54 |
#endif |
---|
55 |
#ifdef HAVE_NETINET_IN_H |
---|
56 |
#include <netinet/in.h> |
---|
57 |
#endif |
---|
58 |
#ifdef HAVE_SIGNAL_H |
---|
59 |
#include <signal.h> |
---|
60 |
#endif |
---|
61 |
#ifdef HAVE_STDINT_H |
---|
62 |
#include <stdint.h> |
---|
63 |
#endif |
---|
64 |
#ifdef HAVE_STDIO_H |
---|
65 |
#include <stdio.h> |
---|
66 |
#endif |
---|
67 |
#ifdef HAVE_STRING_H |
---|
68 |
#include <string.h> |
---|
69 |
#endif |
---|
70 |
#ifdef HAVE_SYS_CDEFS_H |
---|
71 |
#include <sys/cdefs.h> |
---|
72 |
#endif |
---|
73 |
#ifdef HAVE_SYS_FILIO_H |
---|
74 |
#include <sys/filio.h> |
---|
75 |
#endif |
---|
76 |
#ifdef HAVE_SYS_IOCTL_H |
---|
77 |
#include <sys/ioctl.h> |
---|
78 |
#endif |
---|
79 |
#ifdef HAVE_SYS_SOCKET_H |
---|
80 |
#include <sys/socket.h> |
---|
81 |
#endif |
---|
82 |
#ifdef HAVE_SYS_SOCKIO_H |
---|
83 |
#include <sys/sockio.h> |
---|
84 |
#endif |
---|
85 |
#ifdef HAVE_SYS_TIME_H |
---|
86 |
#include <sys/time.h> |
---|
87 |
#endif |
---|
88 |
#ifdef HAVE_SYS_TYPES_H |
---|
89 |
#include <sys/types.h> |
---|
90 |
#endif |
---|
91 |
#ifdef HAVE_SYS_UIO_H |
---|
92 |
#include <sys/uio.h> |
---|
93 |
#endif |
---|
94 |
#ifdef HAVE_TIME_H |
---|
95 |
#include <time.h> |
---|
96 |
#endif |
---|
97 |
#ifdef HAVE_UNISTD_H |
---|
98 |
#include <unistd.h> |
---|
99 |
#endif |
---|
100 |
|
---|
101 |
#include <sp.h> |
---|
102 |
#include <event.h> |
---|
103 |
#ifdef HAVE_GNUREGEX_H |
---|
104 |
#include <gnuregex.h> |
---|
105 |
#else |
---|
106 |
#ifdef HAVE_REGEX_H |
---|
107 |
#include <regex.h> |
---|
108 |
#endif |
---|
109 |
#endif |
---|
110 |
|
---|
111 |
#include "config.h" |
---|
112 |
|
---|
113 |
#endif |
---|