1 |
/* config.h.in. Generated from configure.ac by autoheader. */ |
2 |
|
3 |
/* Predefined possible va_copy() implementation (id: ASP) */ |
4 |
#define __VA_COPY_USE_ASP(d, s) do { *(d) = *(s); } while (0) |
5 |
|
6 |
/* Predefined possible va_copy() implementation (id: ASS) */ |
7 |
#define __VA_COPY_USE_ASS(d, s) do { (d) = (s); } while (0) |
8 |
|
9 |
/* Predefined possible va_copy() implementation (id: C99) */ |
10 |
#define __VA_COPY_USE_C99(d, s) va_copy((d), (s)) |
11 |
|
12 |
/* Predefined possible va_copy() implementation (id: CPP) */ |
13 |
#define __VA_COPY_USE_CPP(d, s) memcpy((void *)(d), (void *)(s)), sizeof(*(s)) |
14 |
|
15 |
/* Predefined possible va_copy() implementation (id: CPS) */ |
16 |
#define __VA_COPY_USE_CPS(d, s) memcpy((void *)&(d), (void *)&(s)), sizeof((s)) |
17 |
|
18 |
/* Predefined possible va_copy() implementation (id: GCB) */ |
19 |
#define __VA_COPY_USE_GCB(d, s) __builtin_va_copy((d), (s)) |
20 |
|
21 |
/* Predefined possible va_copy() implementation (id: GCH) */ |
22 |
#define __VA_COPY_USE_GCH(d, s) __va_copy((d), (s)) |
23 |
|
24 |
/* Predefined possible va_copy() implementation (id: GCM) */ |
25 |
#define __VA_COPY_USE_GCM(d, s) VA_COPY((d), (s)) |
26 |
|
27 |
/* Define to 1 if you have the `dlclose' function. */ |
28 |
#undef HAVE_DLCLOSE |
29 |
|
30 |
/* Define to 1 if you have the `dlerror' function. */ |
31 |
#undef HAVE_DLERROR |
32 |
|
33 |
/* Define to 1 if you have the <dlfcn.h> header file. */ |
34 |
#undef HAVE_DLFCN_H |
35 |
|
36 |
/* Define to 1 if you have the `dlopen' function. */ |
37 |
#undef HAVE_DLOPEN |
38 |
|
39 |
/* Define to 1 if you have the <inttypes.h> header file. */ |
40 |
#undef HAVE_INTTYPES_H |
41 |
|
42 |
/* Define to 1 if you have the `dl' library (-ldl). */ |
43 |
#undef HAVE_LIBDL |
44 |
|
45 |
/* Define to 1 if you have the `m' library (-lm). */ |
46 |
#undef HAVE_LIBM |
47 |
|
48 |
/* Define to 1 if you have the `nsl' library (-lnsl). */ |
49 |
#undef HAVE_LIBNSL |
50 |
|
51 |
/* Define to 1 if you have the `socket' library (-lsocket). */ |
52 |
#undef HAVE_LIBSOCKET |
53 |
|
54 |
/* Define to 1 if you have the <memory.h> header file. */ |
55 |
#undef HAVE_MEMORY_H |
56 |
|
57 |
/* Define to 1 if you have the <stdint.h> header file. */ |
58 |
#undef HAVE_STDINT_H |
59 |
|
60 |
/* Define to 1 if you have the <stdlib.h> header file. */ |
61 |
#undef HAVE_STDLIB_H |
62 |
|
63 |
/* Define to 1 if you have the <strings.h> header file. */ |
64 |
#undef HAVE_STRINGS_H |
65 |
|
66 |
/* Define to 1 if you have the <string.h> header file. */ |
67 |
#undef HAVE_STRING_H |
68 |
|
69 |
/* Define to 1 if `st_birthtime' is member of `struct stat'. */ |
70 |
#undef HAVE_STRUCT_STAT_ST_BIRTHTIME |
71 |
|
72 |
/* Define to 1 if `st_birthtimensec' is member of `struct stat'. */ |
73 |
#undef HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC |
74 |
|
75 |
/* Define to 1 if you have the <sys/stat.h> header file. */ |
76 |
#undef HAVE_SYS_STAT_H |
77 |
|
78 |
/* Define to 1 if you have the <sys/types.h> header file. */ |
79 |
#undef HAVE_SYS_TYPES_H |
80 |
|
81 |
/* Define to 1 if you have the <unistd.h> header file. */ |
82 |
#undef HAVE_UNISTD_H |
83 |
|
84 |
/* Define if va_copy() macro exists (and no fallback implementation is |
85 |
required) */ |
86 |
#undef HAVE_VA_COPY |
87 |
|
88 |
/* Define to the address where bug reports for this package should be sent. */ |
89 |
#undef PACKAGE_BUGREPORT |
90 |
|
91 |
/* Define to the full name of this package. */ |
92 |
#undef PACKAGE_NAME |
93 |
|
94 |
/* Define to the full name and version of this package. */ |
95 |
#undef PACKAGE_STRING |
96 |
|
97 |
/* Define to the one symbol short name of this package. */ |
98 |
#undef PACKAGE_TARNAME |
99 |
|
100 |
/* Define to the version of this package. */ |
101 |
#undef PACKAGE_VERSION |
102 |
|
103 |
/* Define to 1 if you have the ANSI C header files. */ |
104 |
#undef STDC_HEADERS |
105 |
|
106 |
/* Optional va_copy() implementation activation */ |
107 |
#ifndef HAVE_VA_COPY |
108 |
#define va_copy(d, s) __VA_COPY_USE(d, s) |
109 |
#endif |
110 |
|
111 |
|
112 |
/* Define to id of used va_copy() implementation */ |
113 |
#undef __VA_COPY_USE |