Annotation of libaitsched/inc/config.h.in, revision 1.13
1.1 misho 1: /* inc/config.h.in. Generated from configure.in by autoheader. */
2:
1.3 misho 3: /* Build scheduler library with AIO operations */
4: #undef AIO_SUPPORT
5:
1.13 ! misho 6: /* atomic lock support */
! 7: #undef ATOMIC_SUPPORT
! 8:
1.8 misho 9: /* epoll support */
10: #undef EP_SUPPORT
11:
1.11 misho 12: /* Define to 1 if you have the 'clock_gettime' function. */
1.1 misho 13: #undef HAVE_CLOCK_GETTIME
14:
15: /* Define to 1 if you have the <inttypes.h> header file. */
16: #undef HAVE_INTTYPES_H
17:
1.11 misho 18: /* Define to 1 if you have the 'bsd' library (-lbsd). */
1.9 misho 19: #undef HAVE_LIBBSD
20:
1.12 misho 21: /* Define to 1 if you have the 'elwix' library (-lelwix). */
22: #undef HAVE_LIBELWIX
23:
1.11 misho 24: /* Define to 1 if you have the 'pthread' library (-lpthread). */
1.2 misho 25: #undef HAVE_LIBPTHREAD
26:
1.11 misho 27: /* Define to 1 if you have the 'rt' library (-lrt). */
1.3 misho 28: #undef HAVE_LIBRT
29:
1.11 misho 30: /* Define to 1 if your system has a GNU libc compatible 'malloc' function, and
1.1 misho 31: to 0 otherwise. */
32: #undef HAVE_MALLOC
33:
1.11 misho 34: /* Define to 1 if you have the 'memset' function. */
1.1 misho 35: #undef HAVE_MEMSET
36:
37: /* Define to 1 if you have the <stdint.h> header file. */
38: #undef HAVE_STDINT_H
39:
1.10 misho 40: /* Define to 1 if you have the <stdio.h> header file. */
41: #undef HAVE_STDIO_H
42:
1.1 misho 43: /* Define to 1 if you have the <stdlib.h> header file. */
44: #undef HAVE_STDLIB_H
45:
1.11 misho 46: /* Define to 1 if you have the 'strerror' function. */
1.1 misho 47: #undef HAVE_STRERROR
48:
49: /* Define to 1 if you have the <strings.h> header file. */
50: #undef HAVE_STRINGS_H
51:
52: /* Define to 1 if you have the <string.h> header file. */
53: #undef HAVE_STRING_H
54:
1.11 misho 55: /* Define to 1 if you have the 'strlcat' function. */
1.8 misho 56: #undef HAVE_STRLCAT
57:
1.11 misho 58: /* Define to 1 if you have the 'strlcpy' function. */
1.8 misho 59: #undef HAVE_STRLCPY
60:
1.1 misho 61: /* Define to 1 if you have the <sys/stat.h> header file. */
62: #undef HAVE_SYS_STAT_H
63:
64: /* Define to 1 if you have the <sys/time.h> header file. */
65: #undef HAVE_SYS_TIME_H
66:
67: /* Define to 1 if you have the <sys/types.h> header file. */
68: #undef HAVE_SYS_TYPES_H
69:
1.11 misho 70: /* Define to 1 if you have the 'timer_create' function. */
1.5 misho 71: #undef HAVE_TIMER_CREATE
72:
1.11 misho 73: /* Define to 1 if you have the 'timer_delete' function. */
1.7 misho 74: #undef HAVE_TIMER_DELETE
75:
1.11 misho 76: /* Define to 1 if you have the 'timer_settime' function. */
1.5 misho 77: #undef HAVE_TIMER_SETTIME
78:
1.1 misho 79: /* Define to 1 if you have the <unistd.h> header file. */
80: #undef HAVE_UNISTD_H
81:
1.4 misho 82: /* How many kqueue events can scheduling at one time */
83: #undef KQ_EVENTS
84:
1.8 misho 85: /* kqueue support */
86: #undef KQ_SUPPORT
87:
1.1 misho 88: /* Turn off debug asserts */
89: #undef NDEBUG
90:
1.8 misho 91: /* select support */
92: #undef NO_SUPPORT
93:
1.1 misho 94: /* Define to the address where bug reports for this package should be sent. */
95: #undef PACKAGE_BUGREPORT
96:
97: /* Define to the full name of this package. */
98: #undef PACKAGE_NAME
99:
100: /* Define to the full name and version of this package. */
101: #undef PACKAGE_STRING
102:
103: /* Define to the one symbol short name of this package. */
104: #undef PACKAGE_TARNAME
105:
106: /* Define to the home page for this package. */
107: #undef PACKAGE_URL
108:
109: /* Define to the version of this package. */
110: #undef PACKAGE_VERSION
111:
1.11 misho 112: /* Define to 1 if all of the C89 standard headers exist (not just the ones
1.10 misho 113: required in a freestanding environment). This macro is provided for
114: backward compatibility; new code need not use it. */
1.1 misho 115: #undef STDC_HEADERS
116:
1.8 misho 117: /* support type */
118: #undef SUP_ENABLE
119:
1.1 misho 120: /* Build libraries with debug information and additional messages */
121: #undef __DEBUG
122:
1.10 misho 123: /* Build libraries with libelwix memory managemant */
124: #undef __ELWIX
125:
1.11 misho 126: /* Define to '__inline__' or '__inline' if that's what the C compiler
1.1 misho 127: calls it, or to nothing if 'inline' is not supported under any name. */
128: #ifndef __cplusplus
129: #undef inline
130: #endif
131:
132: /* Define to rpl_malloc if the replacement function should be used. */
133: #undef malloc
134:
1.11 misho 135: /* Define as 'unsigned int' if <stddef.h> doesn't define. */
1.1 misho 136: #undef size_t
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>