ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/config.h.in
(Generate patch)

Comparing IO-AIO/config.h.in (file contents):
Revision 1.8 by root, Tue Dec 29 15:16:28 2020 UTC vs.
Revision 1.9 by root, Tue Jul 27 07:58:38 2021 UTC

31#undef HAVE_LINUX_SPLICE 31#undef HAVE_LINUX_SPLICE
32 32
33/* memfd_create(2) is available */ 33/* memfd_create(2) is available */
34#undef HAVE_MEMFD_CREATE 34#undef HAVE_MEMFD_CREATE
35 35
36/* Define to 1 if you have the <memory.h> header file. */ 36/* Define to 1 if you have the <minix/config.h> header file. */
37#undef HAVE_MEMORY_H 37#undef HAVE_MINIX_CONFIG_H
38 38
39/* pipe2(2) is available */ 39/* pipe2(2) is available */
40#undef HAVE_PIPE2 40#undef HAVE_PIPE2
41 41
42/* posix_close(2) is available */ 42/* posix_close(2) is available */
61#undef HAVE_RLIMITS 61#undef HAVE_RLIMITS
62 62
63/* sendfile(2) is available and supported */ 63/* sendfile(2) is available and supported */
64#undef HAVE_SENDFILE 64#undef HAVE_SENDFILE
65 65
66/* have siginfo_t in signal.h */
67#undef HAVE_SIGINFO_T
68
66/* statx(2) is available */ 69/* statx(2) is available */
67#undef HAVE_STATX 70#undef HAVE_STATX
68 71
69/* Define to 1 if you have the <stdint.h> header file. */ 72/* Define to 1 if you have the <stdint.h> header file. */
70#undef HAVE_STDINT_H 73#undef HAVE_STDINT_H
71 74
75/* Define to 1 if you have the <stdio.h> header file. */
76#undef HAVE_STDIO_H
77
72/* Define to 1 if you have the <stdlib.h> header file. */ 78/* Define to 1 if you have the <stdlib.h> header file. */
73#undef HAVE_STDLIB_H 79#undef HAVE_STDLIB_H
74 80
75/* Define to 1 if you have the <strings.h> header file. */ 81/* Define to 1 if you have the <strings.h> header file. */
76#undef HAVE_STRINGS_H 82#undef HAVE_STRINGS_H
130#undef HAVE_UNISTD_H 136#undef HAVE_UNISTD_H
131 137
132/* utimes(2) is available */ 138/* utimes(2) is available */
133#undef HAVE_UTIMES 139#undef HAVE_UTIMES
134 140
141/* Define to 1 if you have the <wchar.h> header file. */
142#undef HAVE_WCHAR_H
143
135/* Define to the address where bug reports for this package should be sent. */ 144/* Define to the address where bug reports for this package should be sent. */
136#undef PACKAGE_BUGREPORT 145#undef PACKAGE_BUGREPORT
137 146
138/* Define to the full name of this package. */ 147/* Define to the full name of this package. */
139#undef PACKAGE_NAME 148#undef PACKAGE_NAME
148#undef PACKAGE_URL 157#undef PACKAGE_URL
149 158
150/* Define to the version of this package. */ 159/* Define to the version of this package. */
151#undef PACKAGE_VERSION 160#undef PACKAGE_VERSION
152 161
153/* Define to 1 if you have the ANSI C header files. */ 162/* Define to 1 if all of the C90 standard headers exist (not just the ones
163 required in a freestanding environment). This macro is provided for
164 backward compatibility; new code need not use it. */
154#undef STDC_HEADERS 165#undef STDC_HEADERS
155 166
156/* Enable extensions on AIX 3, Interix. */ 167/* Enable extensions on AIX 3, Interix. */
157#ifndef _ALL_SOURCE 168#ifndef _ALL_SOURCE
158# undef _ALL_SOURCE 169# undef _ALL_SOURCE
159#endif 170#endif
171/* Enable general extensions on macOS. */
172#ifndef _DARWIN_C_SOURCE
173# undef _DARWIN_C_SOURCE
174#endif
175/* Enable general extensions on Solaris. */
176#ifndef __EXTENSIONS__
177# undef __EXTENSIONS__
178#endif
160/* Enable GNU extensions on systems that have them. */ 179/* Enable GNU extensions on systems that have them. */
161#ifndef _GNU_SOURCE 180#ifndef _GNU_SOURCE
162# undef _GNU_SOURCE 181# undef _GNU_SOURCE
163#endif 182#endif
164/* Enable threading extensions on Solaris. */ 183/* Enable X/Open compliant socket functions that do not require linking
184 with -lxnet on HP-UX 11.11. */
185#ifndef _HPUX_ALT_XOPEN_SOCKET_API
186# undef _HPUX_ALT_XOPEN_SOCKET_API
187#endif
188/* Identify the host operating system as Minix.
189 This macro does not affect the system headers' behavior.
190 A future release of Autoconf may stop defining this macro. */
191#ifndef _MINIX
192# undef _MINIX
193#endif
194/* Enable general extensions on NetBSD.
195 Enable NetBSD compatibility extensions on Minix. */
196#ifndef _NETBSD_SOURCE
197# undef _NETBSD_SOURCE
198#endif
199/* Enable OpenBSD compatibility extensions on NetBSD.
200 Oddly enough, this does nothing on OpenBSD. */
201#ifndef _OPENBSD_SOURCE
202# undef _OPENBSD_SOURCE
203#endif
204/* Define to 1 if needed for POSIX-compatible behavior. */
205#ifndef _POSIX_SOURCE
206# undef _POSIX_SOURCE
207#endif
208/* Define to 2 if needed for POSIX-compatible behavior. */
209#ifndef _POSIX_1_SOURCE
210# undef _POSIX_1_SOURCE
211#endif
212/* Enable POSIX-compatible threading on Solaris. */
165#ifndef _POSIX_PTHREAD_SEMANTICS 213#ifndef _POSIX_PTHREAD_SEMANTICS
166# undef _POSIX_PTHREAD_SEMANTICS 214# undef _POSIX_PTHREAD_SEMANTICS
215#endif
216/* Enable extensions specified by ISO/IEC TS 18661-5:2014. */
217#ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
218# undef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
219#endif
220/* Enable extensions specified by ISO/IEC TS 18661-1:2014. */
221#ifndef __STDC_WANT_IEC_60559_BFP_EXT__
222# undef __STDC_WANT_IEC_60559_BFP_EXT__
223#endif
224/* Enable extensions specified by ISO/IEC TS 18661-2:2015. */
225#ifndef __STDC_WANT_IEC_60559_DFP_EXT__
226# undef __STDC_WANT_IEC_60559_DFP_EXT__
227#endif
228/* Enable extensions specified by ISO/IEC TS 18661-4:2015. */
229#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
230# undef __STDC_WANT_IEC_60559_FUNCS_EXT__
231#endif
232/* Enable extensions specified by ISO/IEC TS 18661-3:2015. */
233#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
234# undef __STDC_WANT_IEC_60559_TYPES_EXT__
235#endif
236/* Enable extensions specified by ISO/IEC TR 24731-2:2010. */
237#ifndef __STDC_WANT_LIB_EXT2__
238# undef __STDC_WANT_LIB_EXT2__
239#endif
240/* Enable extensions specified by ISO/IEC 24747:2009. */
241#ifndef __STDC_WANT_MATH_SPEC_FUNCS__
242# undef __STDC_WANT_MATH_SPEC_FUNCS__
167#endif 243#endif
168/* Enable extensions on HP NonStop. */ 244/* Enable extensions on HP NonStop. */
169#ifndef _TANDEM_SOURCE 245#ifndef _TANDEM_SOURCE
170# undef _TANDEM_SOURCE 246# undef _TANDEM_SOURCE
171#endif 247#endif
172/* Enable general extensions on Solaris. */ 248/* Enable X/Open extensions. Define to 500 only if necessary
173#ifndef __EXTENSIONS__ 249 to make mbstate_t available. */
174# undef __EXTENSIONS__ 250#ifndef _XOPEN_SOURCE
175#endif
176
177
178/* Define to 1 if on MINIX. */
179#undef _MINIX
180
181/* Define to 2 if the system does not provide POSIX.1 features except with
182 this defined. */
183#undef _POSIX_1_SOURCE
184
185/* Define to 1 if you need to in order for `stat' and other things to work. */
186#undef _POSIX_SOURCE 251# undef _XOPEN_SOURCE
252#endif
253

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines