xref: /netbsd-src/external/gpl3/gdb/lib/libgdb/arch/x86_64/config.h (revision c318fd39780b693bcd70c18b29cfc4c8d31ffb65)
1605c6d89Schristos /* This file is automatically generated.  DO NOT EDIT! */
2f5a9565aSchristos /* Generated from: NetBSD: mknative-gdb,v 1.16 2023/07/31 17:09:59 christos Exp  */
370cee18aSchristos /* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp  */
4605c6d89Schristos 
5605c6d89Schristos /* config.h.  Generated from config.in by configure.  */
6605c6d89Schristos /* config.in.  Generated from configure.ac by autoheader.  */
7605c6d89Schristos 
8605c6d89Schristos /* Define if building universal (internal helper macro) */
9605c6d89Schristos /* #undef AC_APPLE_UNIVERSAL_BUILD */
10605c6d89Schristos 
11*c318fd39Schristos /* Additional directories to look for separate debug info. */
12*c318fd39Schristos /* #undef ADDITIONAL_DEBUG_DIRS */
13*c318fd39Schristos 
1434f40950Schristos /* Directories from which to load auto-loaded scripts. */
155900762bSrin #define AUTO_LOAD_DIR "$debugdir:$datadir/auto-load"
16605c6d89Schristos 
1734f40950Schristos /* Directories safe to hold auto-loaded files. */
185900762bSrin #define AUTO_LOAD_SAFE_PATH "$debugdir:$datadir/auto-load"
19605c6d89Schristos 
2034f40950Schristos /* Directory of programs. */
2134f40950Schristos #define BINDIR "/usr/bin"
22605c6d89Schristos 
23605c6d89Schristos /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
24605c6d89Schristos    systems. This function is required for `alloca.c' support on those systems.
25605c6d89Schristos    */
26605c6d89Schristos /* #undef CRAY_STACKSEG_END */
27605c6d89Schristos 
2858eb0ebeSchristos /* Define to 1 if std::thread works. */
2958eb0ebeSchristos #define CXX_STD_THREAD 1
3058eb0ebeSchristos 
31605c6d89Schristos /* Define to 1 if using `alloca.c'. */
32605c6d89Schristos /* #undef C_ALLOCA */
33605c6d89Schristos 
34605c6d89Schristos /* look for global separate debug info in this path [LIBDIR/debug] */
35605c6d89Schristos #define DEBUGDIR "/usr/libdata/debug"
36605c6d89Schristos 
37605c6d89Schristos /* Define if the separate-debug-dir directory should be relocated when GDB is
38605c6d89Schristos    moved. */
39605c6d89Schristos #define DEBUGDIR_RELOCATABLE 1
40605c6d89Schristos 
41605c6d89Schristos /* Define to BFD's default architecture. */
42605c6d89Schristos #define DEFAULT_BFD_ARCH bfd_i386_arch
43605c6d89Schristos 
44605c6d89Schristos /* Define to BFD's default target vector. */
4557d153c7Schristos #define DEFAULT_BFD_VEC x86_64_elf64_vec
46605c6d89Schristos 
4758eb0ebeSchristos /* Handle .ctf type-info sections */
4858eb0ebeSchristos #define ENABLE_LIBCTF 1
4958eb0ebeSchristos 
50605c6d89Schristos /* Define to 1 if translation of program messages to the user's native
51605c6d89Schristos    language is requested. */
52*c318fd39Schristos /* #undef ENABLE_NLS */
53605c6d89Schristos 
54924795e6Schristos /* The .gdbearlyinit filename. */
55924795e6Schristos #define GDBEARLYINIT ".gdbearlyinit"
56924795e6Schristos 
5778ce218aSchristos /* The .gdbinit filename. */
5878ce218aSchristos #define GDBINIT ".gdbinit"
5978ce218aSchristos 
60605c6d89Schristos /* look for global separate data files in this path [DATADIR/gdb] */
61605c6d89Schristos #define GDB_DATADIR "/usr/share/gdb"
62605c6d89Schristos 
63605c6d89Schristos /* Define if the gdb-datadir directory should be relocated when GDB is moved.
64605c6d89Schristos    */
65605c6d89Schristos #define GDB_DATADIR_RELOCATABLE 1
66605c6d89Schristos 
67605c6d89Schristos /* Define to be a string naming the default host character set. */
68605c6d89Schristos #define GDB_DEFAULT_HOST_CHARSET "UTF-8"
69605c6d89Schristos 
70605c6d89Schristos /* Host double floatformat */
71c358683dSchristos #define GDB_HOST_DOUBLE_FORMAT &floatformat_ieee_double_little
72605c6d89Schristos 
73605c6d89Schristos /* Host float floatformat */
74c358683dSchristos #define GDB_HOST_FLOAT_FORMAT &floatformat_ieee_single_little
75605c6d89Schristos 
76605c6d89Schristos /* Host long double floatformat */
77c358683dSchristos #define GDB_HOST_LONG_DOUBLE_FORMAT &floatformat_i387_ext
78605c6d89Schristos 
79605c6d89Schristos /* nativefile */
80605c6d89Schristos /* #undef GDB_NM_FILE */
81605c6d89Schristos 
82605c6d89Schristos /* Define to the default OS ABI for this configuration. */
835900762bSrin #define GDB_OSABI_DEFAULT GDB_OSABI_NETBSD
84605c6d89Schristos 
85c358683dSchristos /* Define if self-testing features should be enabled */
86924795e6Schristos /* #undef GDB_SELF_TEST */
87c358683dSchristos 
88605c6d89Schristos /* Define to 1 if you have `alloca', as a function or macro. */
89605c6d89Schristos #define HAVE_ALLOCA 1
90605c6d89Schristos 
91605c6d89Schristos /* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
92605c6d89Schristos    */
93605c6d89Schristos /* #undef HAVE_ALLOCA_H */
94605c6d89Schristos 
95*c318fd39Schristos /* Define if amd-dbgapi is being linked in. */
96*c318fd39Schristos /* #undef HAVE_AMD_DBGAPI */
97*c318fd39Schristos 
98605c6d89Schristos /* Define to 1 if you have the `btowc' function. */
99605c6d89Schristos #define HAVE_BTOWC 1
100605c6d89Schristos 
101*c318fd39Schristos /* Define to 1 if you have the Mac OS X function
102*c318fd39Schristos    CFLocaleCopyPreferredLanguages in the CoreFoundation framework. */
103*c318fd39Schristos /* #undef HAVE_CFLOCALECOPYPREFERREDLANGUAGES */
104*c318fd39Schristos 
105*c318fd39Schristos /* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in
106*c318fd39Schristos    the CoreFoundation framework. */
107*c318fd39Schristos /* #undef HAVE_CFPREFERENCESCOPYAPPVALUE */
108*c318fd39Schristos 
109605c6d89Schristos /* Define to 1 if you have the <cursesX.h> header file. */
110605c6d89Schristos /* #undef HAVE_CURSESX_H */
111605c6d89Schristos 
112605c6d89Schristos /* Define to 1 if you have the <curses.h> header file. */
113605c6d89Schristos #define HAVE_CURSES_H 1
114605c6d89Schristos 
115*c318fd39Schristos /* define if the compiler supports basic C++17 syntax */
116*c318fd39Schristos #define HAVE_CXX17 1
117*c318fd39Schristos 
118*c318fd39Schristos /* Define if the GNU dcgettext() function is already present or preinstalled.
119*c318fd39Schristos    */
120*c318fd39Schristos /* #undef HAVE_DCGETTEXT */
1213b99ba0fSchristos 
122605c6d89Schristos /* Define to 1 if you have the declaration of `ADDR_NO_RANDOMIZE', and to 0 if
123605c6d89Schristos    you don't. */
124605c6d89Schristos #define HAVE_DECL_ADDR_NO_RANDOMIZE 0
125605c6d89Schristos 
12653f9039fSchristos /* Define to 1 if you have the declaration of `asprintf', and to 0 if you
12753f9039fSchristos    don't. */
12853f9039fSchristos #define HAVE_DECL_ASPRINTF 1
12953f9039fSchristos 
13053f9039fSchristos /* Define to 1 if you have the declaration of `basename(char *)', and to 0 if
13153f9039fSchristos    you don't. */
13253f9039fSchristos #define HAVE_DECL_BASENAME 0
13353f9039fSchristos 
13453f9039fSchristos /* Define to 1 if you have the declaration of `ffs', and to 0 if you don't. */
13553f9039fSchristos #define HAVE_DECL_FFS 1
13653f9039fSchristos 
137605c6d89Schristos /* Define to 1 if you have the declaration of `getthrds', and to 0 if you
138605c6d89Schristos    don't. */
139605c6d89Schristos /* #undef HAVE_DECL_GETTHRDS */
140605c6d89Schristos 
141605c6d89Schristos /* Define to 1 if you have the declaration of `snprintf', and to 0 if you
142605c6d89Schristos    don't. */
143605c6d89Schristos #define HAVE_DECL_SNPRINTF 1
144605c6d89Schristos 
145605c6d89Schristos /* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
146605c6d89Schristos    */
147605c6d89Schristos #define HAVE_DECL_STRSTR 1
148605c6d89Schristos 
14953f9039fSchristos /* Define to 1 if you have the declaration of `strtol', and to 0 if you don't.
15053f9039fSchristos    */
15153f9039fSchristos #define HAVE_DECL_STRTOL 1
15253f9039fSchristos 
15353f9039fSchristos /* Define to 1 if you have the declaration of `strtoll', and to 0 if you
15453f9039fSchristos    don't. */
15553f9039fSchristos #define HAVE_DECL_STRTOLL 1
15653f9039fSchristos 
15753f9039fSchristos /* Define to 1 if you have the declaration of `strtoul', and to 0 if you
15853f9039fSchristos    don't. */
15953f9039fSchristos #define HAVE_DECL_STRTOUL 1
16053f9039fSchristos 
16153f9039fSchristos /* Define to 1 if you have the declaration of `strtoull', and to 0 if you
16253f9039fSchristos    don't. */
16353f9039fSchristos #define HAVE_DECL_STRTOULL 1
16453f9039fSchristos 
16553f9039fSchristos /* Define to 1 if you have the declaration of `strverscmp', and to 0 if you
16653f9039fSchristos    don't. */
16753f9039fSchristos #define HAVE_DECL_STRVERSCMP 0
16853f9039fSchristos 
16953f9039fSchristos /* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
17053f9039fSchristos    don't. */
17153f9039fSchristos #define HAVE_DECL_VASPRINTF 1
17253f9039fSchristos 
17353f9039fSchristos /* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
17453f9039fSchristos    don't. */
17553f9039fSchristos #define HAVE_DECL_VSNPRINTF 1
17653f9039fSchristos 
17734f40950Schristos /* Define to 1 if you have the <dlfcn.h> header file. */
17834f40950Schristos #define HAVE_DLFCN_H 1
17934f40950Schristos 
180605c6d89Schristos /* Define if ELF support should be included. */
18125acabf0Schristos #define HAVE_ELF 1
182605c6d89Schristos 
18370cee18aSchristos /* Define if <sys/procfs.h> has elf_fpregset_t. */
18470cee18aSchristos /* #undef HAVE_ELF_FPREGSET_T */
18570cee18aSchristos 
186605c6d89Schristos /* Define to 1 if you have the <elf_hp.h> header file. */
187605c6d89Schristos /* #undef HAVE_ELF_HP_H */
188605c6d89Schristos 
189605c6d89Schristos /* Define to 1 if your system has the etext variable. */
190605c6d89Schristos #define HAVE_ETEXT 1
191605c6d89Schristos 
192924795e6Schristos /* Define to 1 if execinfo.h backtrace functions are available. */
193924795e6Schristos /* #undef HAVE_EXECINFO_BACKTRACE */
194924795e6Schristos 
195924795e6Schristos /* Define to 1 if you have the <execinfo.h> header file. */
196924795e6Schristos #define HAVE_EXECINFO_H 1
197924795e6Schristos 
19878ce218aSchristos /* Define to 1 if you have the `fdwalk' function. */
19978ce218aSchristos /* #undef HAVE_FDWALK */
20078ce218aSchristos 
201605c6d89Schristos /* Define to 1 if you have the `fork' function. */
202605c6d89Schristos #define HAVE_FORK 1
203605c6d89Schristos 
204605c6d89Schristos /* Define if <sys/procfs.h> has fpregset_t. */
205605c6d89Schristos /* #undef HAVE_FPREGSET_T */
206605c6d89Schristos 
20753f9039fSchristos /* Define to 1 if you have the `getauxval' function. */
20853f9039fSchristos /* #undef HAVE_GETAUXVAL */
20953f9039fSchristos 
210605c6d89Schristos /* Define to 1 if you have the `getgid' function. */
211605c6d89Schristos #define HAVE_GETGID 1
212605c6d89Schristos 
213605c6d89Schristos /* Define to 1 if you have the `getpagesize' function. */
214605c6d89Schristos #define HAVE_GETPAGESIZE 1
215605c6d89Schristos 
21670cee18aSchristos /* Define to 1 if you have the `getpgid' function. */
21770cee18aSchristos #define HAVE_GETPGID 1
21870cee18aSchristos 
219605c6d89Schristos /* Define to 1 if you have the `getrlimit' function. */
220605c6d89Schristos #define HAVE_GETRLIMIT 1
221605c6d89Schristos 
222605c6d89Schristos /* Define to 1 if you have the `getrusage' function. */
223605c6d89Schristos #define HAVE_GETRUSAGE 1
224605c6d89Schristos 
225*c318fd39Schristos /* Define if the GNU gettext() function is already present or preinstalled. */
226*c318fd39Schristos /* #undef HAVE_GETTEXT */
227*c318fd39Schristos 
228605c6d89Schristos /* Define to 1 if you have the `getuid' function. */
229605c6d89Schristos #define HAVE_GETUID 1
230605c6d89Schristos 
231605c6d89Schristos /* Define if <sys/procfs.h> has gregset_t. */
232605c6d89Schristos /* #undef HAVE_GREGSET_T */
233605c6d89Schristos 
23457d153c7Schristos /* Define if Guile interpreter is being linked in. */
23557d153c7Schristos /* #undef HAVE_GUILE */
23657d153c7Schristos 
23753f9039fSchristos /* Define if Guile supports manual finalization. */
23853f9039fSchristos /* #undef HAVE_GUILE_MANUAL_FINALIZATION */
23953f9039fSchristos 
240*c318fd39Schristos /* Define if you have the iconv() function and it works. */
24125acabf0Schristos #define HAVE_ICONV 1
242605c6d89Schristos 
243605c6d89Schristos /* Define to 1 if you have the `iconvlist' function. */
244605c6d89Schristos /* #undef HAVE_ICONVLIST */
245605c6d89Schristos 
246605c6d89Schristos /* Define to 1 if you have the <inttypes.h> header file. */
247605c6d89Schristos #define HAVE_INTTYPES_H 1
248605c6d89Schristos 
249924795e6Schristos /* Define to 1 if you have the `kinfo_getfile' function. */
25070cee18aSchristos /* #undef HAVE_KINFO_GETFILE */
25170cee18aSchristos 
252605c6d89Schristos /* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
253605c6d89Schristos #define HAVE_LANGINFO_CODESET 1
254605c6d89Schristos 
255605c6d89Schristos /* Define if your <locale.h> file defines LC_MESSAGES. */
256605c6d89Schristos #define HAVE_LC_MESSAGES 1
257605c6d89Schristos 
25878ce218aSchristos /* Define if you have the babeltrace library. */
25978ce218aSchristos /* #undef HAVE_LIBBABELTRACE */
26078ce218aSchristos 
261924795e6Schristos /* Define if libbacktrace is being used. */
262924795e6Schristos #define HAVE_LIBBACKTRACE 1
263924795e6Schristos 
264*c318fd39Schristos /* Define to 1 if curses is enabled. */
265*c318fd39Schristos #define HAVE_LIBCURSES 1
266*c318fd39Schristos 
26758eb0ebeSchristos /* Define to 1 if debuginfod is enabled. */
26858eb0ebeSchristos /* #undef HAVE_LIBDEBUGINFOD */
26958eb0ebeSchristos 
270*c318fd39Schristos /* Define to 1 if debuginfod section downloading is supported. */
271*c318fd39Schristos /* #undef HAVE_LIBDEBUGINFOD_FIND_SECTION */
272*c318fd39Schristos 
273605c6d89Schristos /* Define if you have the expat library. */
27434f40950Schristos #define HAVE_LIBEXPAT 1
275605c6d89Schristos 
276605c6d89Schristos /* Define to 1 if you have the `libiconvlist' function. */
277605c6d89Schristos /* #undef HAVE_LIBICONVLIST */
278605c6d89Schristos 
27953f9039fSchristos /* Define if you have the ipt library. */
28053f9039fSchristos /* #undef HAVE_LIBIPT */
28153f9039fSchristos 
28234f40950Schristos /* Define if you have the lzma library. */
28325acabf0Schristos #define HAVE_LIBLZMA 1
28434f40950Schristos 
285605c6d89Schristos /* Define to 1 if you have the `m' library (-lm). */
286605c6d89Schristos #define HAVE_LIBM 1
287605c6d89Schristos 
288605c6d89Schristos /* Define to 1 if you have the <libunwind-ia64.h> header file. */
289605c6d89Schristos /* #undef HAVE_LIBUNWIND_IA64_H */
290605c6d89Schristos 
29158eb0ebeSchristos /* Define if you have the xxhash library. */
29258eb0ebeSchristos /* #undef HAVE_LIBXXHASH */
29358eb0ebeSchristos 
29470cee18aSchristos /* Define to 1 if you have the <linux/elf.h> header file. */
29570cee18aSchristos /* #undef HAVE_LINUX_ELF_H */
296605c6d89Schristos 
29734f40950Schristos /* Define to 1 if you have the <linux/perf_event.h> header file. */
29834f40950Schristos /* #undef HAVE_LINUX_PERF_EVENT_H */
29934f40950Schristos 
300605c6d89Schristos /* Define to 1 if you have the <locale.h> header file. */
301605c6d89Schristos #define HAVE_LOCALE_H 1
302605c6d89Schristos 
303605c6d89Schristos /* Define to 1 if the compiler supports long double. */
304605c6d89Schristos #define HAVE_LONG_DOUBLE 1
305605c6d89Schristos 
30653f9039fSchristos /* Define to 1 if the system has the type `long long'. */
30753f9039fSchristos #define HAVE_LONG_LONG 1
30853f9039fSchristos 
309605c6d89Schristos /* Define if <sys/procfs.h> has lwpid_t. */
310605c6d89Schristos /* #undef HAVE_LWPID_T */
311605c6d89Schristos 
312605c6d89Schristos /* Define to 1 if you have the <machine/reg.h> header file. */
313605c6d89Schristos #define HAVE_MACHINE_REG_H 1
314605c6d89Schristos 
315605c6d89Schristos /* Define to 1 if you have the <memory.h> header file. */
316605c6d89Schristos #define HAVE_MEMORY_H 1
317605c6d89Schristos 
318605c6d89Schristos /* Define to 1 if you have a working `mmap' system call. */
319605c6d89Schristos #define HAVE_MMAP 1
320605c6d89Schristos 
321605c6d89Schristos /* Define to 1 if you have the `monstartup' function. */
322605c6d89Schristos #define HAVE_MONSTARTUP 1
323605c6d89Schristos 
32470cee18aSchristos /* Define to 1 if you have the <ncursesw/ncurses.h> header file. */
32570cee18aSchristos /* #undef HAVE_NCURSESW_NCURSES_H */
32670cee18aSchristos 
327605c6d89Schristos /* Define to 1 if you have the <ncurses.h> header file. */
328605c6d89Schristos /* #undef HAVE_NCURSES_H */
329605c6d89Schristos 
330605c6d89Schristos /* Define to 1 if you have the <ncurses/ncurses.h> header file. */
331605c6d89Schristos /* #undef HAVE_NCURSES_NCURSES_H */
332605c6d89Schristos 
333605c6d89Schristos /* Define to 1 if you have the <ncurses/term.h> header file. */
334605c6d89Schristos /* #undef HAVE_NCURSES_TERM_H */
335605c6d89Schristos 
336605c6d89Schristos /* Define to 1 if you have the <nlist.h> header file. */
337605c6d89Schristos #define HAVE_NLIST_H 1
338605c6d89Schristos 
339605c6d89Schristos /* Define to 1 if you have the `pipe' function. */
340605c6d89Schristos #define HAVE_PIPE 1
341605c6d89Schristos 
34278ce218aSchristos /* Define to 1 if you have the `pipe2' function. */
34378ce218aSchristos #define HAVE_PIPE2 1
34478ce218aSchristos 
345605c6d89Schristos /* Define to 1 if you have the `poll' function. */
346605c6d89Schristos #define HAVE_POLL 1
347605c6d89Schristos 
348605c6d89Schristos /* Define to 1 if you have the <poll.h> header file. */
349605c6d89Schristos #define HAVE_POLL_H 1
350605c6d89Schristos 
351605c6d89Schristos /* Define to 1 if you have the `posix_madvise' function. */
352605c6d89Schristos #define HAVE_POSIX_MADVISE 1
353605c6d89Schristos 
35434f40950Schristos /* Define to 1 if you have the `pread' function. */
35534f40950Schristos #define HAVE_PREAD 1
35634f40950Schristos 
357605c6d89Schristos /* Define to 1 if you have the `pread64' function. */
358605c6d89Schristos /* #undef HAVE_PREAD64 */
359605c6d89Schristos 
360605c6d89Schristos /* Define if <sys/procfs.h> has prfpregset_t. */
361605c6d89Schristos /* #undef HAVE_PRFPREGSET_T */
362605c6d89Schristos 
363605c6d89Schristos /* Define if <sys/procfs.h> has prgregset32_t. */
364605c6d89Schristos /* #undef HAVE_PRGREGSET32_T */
365605c6d89Schristos 
366605c6d89Schristos /* Define if <sys/procfs.h> has prgregset_t. */
367605c6d89Schristos /* #undef HAVE_PRGREGSET_T */
368605c6d89Schristos 
369605c6d89Schristos /* Define to 1 if you have the <proc_service.h> header file. */
370605c6d89Schristos /* #undef HAVE_PROC_SERVICE_H */
371605c6d89Schristos 
372605c6d89Schristos /* Define if <sys/procfs.h> has psaddr_t. */
373605c6d89Schristos /* #undef HAVE_PSADDR_T */
374605c6d89Schristos 
37558eb0ebeSchristos /* Have PTHREAD_PRIO_INHERIT. */
37658eb0ebeSchristos #define HAVE_PTHREAD_PRIO_INHERIT 1
37758eb0ebeSchristos 
37858eb0ebeSchristos /* Define to 1 if you have the `pthread_setname_np' function. */
37958eb0ebeSchristos #define HAVE_PTHREAD_SETNAME_NP 1
38058eb0ebeSchristos 
38158eb0ebeSchristos /* Define to 1 if you have the `pthread_sigmask' function. */
38258eb0ebeSchristos #define HAVE_PTHREAD_SIGMASK 1
38358eb0ebeSchristos 
38478ce218aSchristos /* Define to 1 if you have the `ptrace64' function. */
38578ce218aSchristos /* #undef HAVE_PTRACE64 */
386605c6d89Schristos 
387605c6d89Schristos /* Define if sys/ptrace.h defines the PTRACE_GETFPXREGS request. */
388605c6d89Schristos /* #undef HAVE_PTRACE_GETFPXREGS */
389605c6d89Schristos 
390605c6d89Schristos /* Define if sys/ptrace.h defines the PTRACE_GETREGS request. */
391605c6d89Schristos /* #undef HAVE_PTRACE_GETREGS */
392605c6d89Schristos 
393605c6d89Schristos /* Define to 1 if you have the <ptrace.h> header file. */
394605c6d89Schristos /* #undef HAVE_PTRACE_H */
395605c6d89Schristos 
396605c6d89Schristos /* Define if sys/ptrace.h defines the PT_GETDBREGS request. */
3973b99ba0fSchristos #define HAVE_PT_GETDBREGS 1
398605c6d89Schristos 
39970cee18aSchristos /* Define to 1 if you have the `pt_insn_event' function. */
40070cee18aSchristos /* #undef HAVE_PT_INSN_EVENT */
40170cee18aSchristos 
40234f40950Schristos /* Define to 1 if you have the `pwrite' function. */
40334f40950Schristos #define HAVE_PWRITE 1
40434f40950Schristos 
405605c6d89Schristos /* Define if Python interpreter is being linked in. */
406605c6d89Schristos /* #undef HAVE_PYTHON */
407605c6d89Schristos 
408924795e6Schristos /* Define to 1 if you have the <readline/readline.h> header file. */
409924795e6Schristos /* #undef HAVE_READLINE_READLINE_H */
410924795e6Schristos 
411605c6d89Schristos /* Define to 1 if you have the `resize_term' function. */
4123b99ba0fSchristos #define HAVE_RESIZE_TERM 1
413605c6d89Schristos 
414605c6d89Schristos /* Define to 1 if you have the `sbrk' function. */
415605c6d89Schristos #define HAVE_SBRK 1
416605c6d89Schristos 
41757d153c7Schristos /* Define to 1 if you have the `scm_new_smob' function. */
41857d153c7Schristos /* #undef HAVE_SCM_NEW_SMOB */
41957d153c7Schristos 
420605c6d89Schristos /* Define to 1 if you have the `setlocale' function. */
421605c6d89Schristos #define HAVE_SETLOCALE 1
422605c6d89Schristos 
42353f9039fSchristos /* Define to 1 if you have the `setns' function. */
42453f9039fSchristos /* #undef HAVE_SETNS */
42553f9039fSchristos 
426605c6d89Schristos /* Define to 1 if you have the `setpgid' function. */
427605c6d89Schristos #define HAVE_SETPGID 1
428605c6d89Schristos 
429605c6d89Schristos /* Define to 1 if you have the `setpgrp' function. */
430605c6d89Schristos #define HAVE_SETPGRP 1
431605c6d89Schristos 
432605c6d89Schristos /* Define to 1 if you have the `setrlimit' function. */
433605c6d89Schristos #define HAVE_SETRLIMIT 1
434605c6d89Schristos 
435605c6d89Schristos /* Define to 1 if you have the `setsid' function. */
436605c6d89Schristos #define HAVE_SETSID 1
437605c6d89Schristos 
438605c6d89Schristos /* Define to 1 if you have the `sigaction' function. */
439605c6d89Schristos #define HAVE_SIGACTION 1
440605c6d89Schristos 
44157d153c7Schristos /* Define to 1 if you have the `sigaltstack' function. */
44257d153c7Schristos #define HAVE_SIGALTSTACK 1
44357d153c7Schristos 
444605c6d89Schristos /* Define to 1 if you have the <signal.h> header file. */
445605c6d89Schristos #define HAVE_SIGNAL_H 1
446605c6d89Schristos 
447605c6d89Schristos /* Define to 1 if you have the `sigprocmask' function. */
448605c6d89Schristos #define HAVE_SIGPROCMASK 1
449605c6d89Schristos 
450605c6d89Schristos /* Define if sigsetjmp is available. */
451605c6d89Schristos #define HAVE_SIGSETJMP 1
452605c6d89Schristos 
453605c6d89Schristos /* Define to 1 if you have the `sigsetmask' function. */
454605c6d89Schristos #define HAVE_SIGSETMASK 1
455605c6d89Schristos 
456924795e6Schristos /* Define to 1 if you have the `sigtimedwait' function. */
457924795e6Schristos #define HAVE_SIGTIMEDWAIT 1
458924795e6Schristos 
459605c6d89Schristos /* Define to 1 if you have the `socketpair' function. */
460605c6d89Schristos #define HAVE_SOCKETPAIR 1
461605c6d89Schristos 
462605c6d89Schristos /* Define to 1 if the system has the type `socklen_t'. */
463605c6d89Schristos #define HAVE_SOCKLEN_T 1
464605c6d89Schristos 
46570cee18aSchristos /* Define to 1 if the source-highlight library is available */
46670cee18aSchristos /* #undef HAVE_SOURCE_HIGHLIGHT */
46770cee18aSchristos 
468605c6d89Schristos /* Define to 1 if you have the <stdint.h> header file. */
469605c6d89Schristos #define HAVE_STDINT_H 1
470605c6d89Schristos 
471605c6d89Schristos /* Define to 1 if you have the <stdlib.h> header file. */
472605c6d89Schristos #define HAVE_STDLIB_H 1
473605c6d89Schristos 
474605c6d89Schristos /* Define to 1 if you have the <strings.h> header file. */
475605c6d89Schristos #define HAVE_STRINGS_H 1
476605c6d89Schristos 
477605c6d89Schristos /* Define to 1 if you have the <string.h> header file. */
478605c6d89Schristos #define HAVE_STRING_H 1
479605c6d89Schristos 
480605c6d89Schristos /* Define to 1 if your system has struct lwp. */
481605c6d89Schristos #define HAVE_STRUCT_LWP 1
482605c6d89Schristos 
48370cee18aSchristos /* Define to 1 if `pl_syscall_code' is a member of `struct ptrace_lwpinfo'. */
484c358683dSchristos /* #undef HAVE_STRUCT_PTRACE_LWPINFO_PL_SYSCALL_CODE */
485c358683dSchristos 
48670cee18aSchristos /* Define to 1 if `pl_tdname' is a member of `struct ptrace_lwpinfo'. */
4873b99ba0fSchristos /* #undef HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME */
4883b99ba0fSchristos 
48970cee18aSchristos /* Define to 1 if `enabled' is a member of `struct pt_insn'. */
49070cee18aSchristos /* #undef HAVE_STRUCT_PT_INSN_ENABLED */
49170cee18aSchristos 
49270cee18aSchristos /* Define to 1 if `resynced' is a member of `struct pt_insn'. */
49370cee18aSchristos /* #undef HAVE_STRUCT_PT_INSN_RESYNCED */
49470cee18aSchristos 
495605c6d89Schristos /* Define to 1 if your system has struct reg in <machine/reg.h>. */
496605c6d89Schristos #define HAVE_STRUCT_REG 1
497605c6d89Schristos 
49870cee18aSchristos /* Define to 1 if `r_fs' is a member of `struct reg'. */
499605c6d89Schristos /* #undef HAVE_STRUCT_REG_R_FS */
500605c6d89Schristos 
50170cee18aSchristos /* Define to 1 if `r_gs' is a member of `struct reg'. */
502605c6d89Schristos /* #undef HAVE_STRUCT_REG_R_GS */
503605c6d89Schristos 
50470cee18aSchristos /* Define to 1 if `st_blksize' is a member of `struct stat'. */
505605c6d89Schristos #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
506605c6d89Schristos 
50770cee18aSchristos /* Define to 1 if `st_blocks' is a member of `struct stat'. */
508605c6d89Schristos #define HAVE_STRUCT_STAT_ST_BLOCKS 1
509605c6d89Schristos 
51070cee18aSchristos /* Define to 1 if `td_pcb' is a member of `struct thread'. */
511605c6d89Schristos /* #undef HAVE_STRUCT_THREAD_TD_PCB */
512605c6d89Schristos 
513605c6d89Schristos /* Define to 1 if you have the <sys/debugreg.h> header file. */
514605c6d89Schristos /* #undef HAVE_SYS_DEBUGREG_H */
515605c6d89Schristos 
516605c6d89Schristos /* Define to 1 if you have the <sys/file.h> header file. */
517605c6d89Schristos #define HAVE_SYS_FILE_H 1
518605c6d89Schristos 
519605c6d89Schristos /* Define to 1 if you have the <sys/filio.h> header file. */
520605c6d89Schristos #define HAVE_SYS_FILIO_H 1
521605c6d89Schristos 
522605c6d89Schristos /* Define to 1 if you have the <sys/ioctl.h> header file. */
523605c6d89Schristos #define HAVE_SYS_IOCTL_H 1
524605c6d89Schristos 
525605c6d89Schristos /* Define to 1 if you have the <sys/param.h> header file. */
526605c6d89Schristos #define HAVE_SYS_PARAM_H 1
527605c6d89Schristos 
528605c6d89Schristos /* Define to 1 if you have the <sys/poll.h> header file. */
529605c6d89Schristos #define HAVE_SYS_POLL_H 1
530605c6d89Schristos 
531924795e6Schristos /* Define to 1 if you have the <sys/procctl.h> header file. */
532924795e6Schristos /* #undef HAVE_SYS_PROCCTL_H */
533924795e6Schristos 
534605c6d89Schristos /* Define to 1 if you have the <sys/procfs.h> header file. */
535605c6d89Schristos /* #undef HAVE_SYS_PROCFS_H */
536605c6d89Schristos 
537605c6d89Schristos /* Define to 1 if you have the <sys/ptrace.h> header file. */
538605c6d89Schristos #define HAVE_SYS_PTRACE_H 1
539605c6d89Schristos 
540605c6d89Schristos /* Define to 1 if you have the <sys/reg.h> header file. */
541605c6d89Schristos /* #undef HAVE_SYS_REG_H */
542605c6d89Schristos 
543605c6d89Schristos /* Define to 1 if you have the <sys/resource.h> header file. */
544605c6d89Schristos #define HAVE_SYS_RESOURCE_H 1
545605c6d89Schristos 
546605c6d89Schristos /* Define to 1 if you have the <sys/select.h> header file. */
547605c6d89Schristos #define HAVE_SYS_SELECT_H 1
548605c6d89Schristos 
54934f40950Schristos /* Define to 1 if you have the <sys/socket.h> header file. */
55034f40950Schristos #define HAVE_SYS_SOCKET_H 1
55134f40950Schristos 
552605c6d89Schristos /* Define to 1 if you have the <sys/stat.h> header file. */
553605c6d89Schristos #define HAVE_SYS_STAT_H 1
554605c6d89Schristos 
555605c6d89Schristos /* Define to 1 if you have the <sys/types.h> header file. */
556605c6d89Schristos #define HAVE_SYS_TYPES_H 1
557605c6d89Schristos 
55834f40950Schristos /* Define to 1 if you have the <sys/un.h> header file. */
55934f40950Schristos #define HAVE_SYS_UN_H 1
56034f40950Schristos 
561605c6d89Schristos /* Define to 1 if you have the <sys/user.h> header file. */
5623b99ba0fSchristos /* #undef HAVE_SYS_USER_H */
563605c6d89Schristos 
564605c6d89Schristos /* Define to 1 if you have the <sys/wait.h> header file. */
565605c6d89Schristos #define HAVE_SYS_WAIT_H 1
566605c6d89Schristos 
567605c6d89Schristos /* Define to 1 if you have the <termios.h> header file. */
568605c6d89Schristos #define HAVE_TERMIOS_H 1
569605c6d89Schristos 
570605c6d89Schristos /* Define to 1 if you have the <term.h> header file. */
571605c6d89Schristos #define HAVE_TERM_H 1
572605c6d89Schristos 
573605c6d89Schristos /* Define to 1 if you have the <thread_db.h> header file. */
574605c6d89Schristos /* #undef HAVE_THREAD_DB_H */
575605c6d89Schristos 
576605c6d89Schristos /* Define to 1 if you have the `ttrace' function. */
577605c6d89Schristos /* #undef HAVE_TTRACE */
578605c6d89Schristos 
579605c6d89Schristos /* Define to 1 if you have the <unistd.h> header file. */
580605c6d89Schristos #define HAVE_UNISTD_H 1
581605c6d89Schristos 
58270cee18aSchristos /* Define to 1 if you have the `use_default_colors' function. */
58370cee18aSchristos #define HAVE_USE_DEFAULT_COLORS 1
58470cee18aSchristos 
585605c6d89Schristos /* Define to 1 if you have the `vfork' function. */
586605c6d89Schristos #define HAVE_VFORK 1
587605c6d89Schristos 
588605c6d89Schristos /* Define to 1 if you have the <vfork.h> header file. */
589605c6d89Schristos /* #undef HAVE_VFORK_H */
590605c6d89Schristos 
591605c6d89Schristos /* Define to 1 if you have the `waitpid' function. */
592605c6d89Schristos #define HAVE_WAITPID 1
593605c6d89Schristos 
594605c6d89Schristos /* Define to 1 if you have the <wait.h> header file. */
595605c6d89Schristos /* #undef HAVE_WAIT_H */
596605c6d89Schristos 
59757d153c7Schristos /* Define to 1 if you have the <windows.h> header file. */
59857d153c7Schristos /* #undef HAVE_WINDOWS_H */
59957d153c7Schristos 
600605c6d89Schristos /* Define to 1 if `fork' works. */
601605c6d89Schristos #define HAVE_WORKING_FORK 1
602605c6d89Schristos 
603605c6d89Schristos /* Define to 1 if `vfork' works. */
604605c6d89Schristos #define HAVE_WORKING_VFORK 1
605605c6d89Schristos 
606605c6d89Schristos /* Define to 1 if you have the `wresize' function. */
607605c6d89Schristos #define HAVE_WRESIZE 1
608605c6d89Schristos 
60958eb0ebeSchristos /* Define to 1 if you have the <ws2tcpip.h> header file. */
61058eb0ebeSchristos /* #undef HAVE_WS2TCPIP_H */
61158eb0ebeSchristos 
612605c6d89Schristos /* Define to 1 if you have the `XML_StopParser' function. */
61334f40950Schristos #define HAVE_XML_STOPPARSER 1
614605c6d89Schristos 
615924795e6Schristos /* Define to 1 if zstd is enabled. */
616924795e6Schristos /* #undef HAVE_ZSTD */
617924795e6Schristos 
618605c6d89Schristos /* Define to 1 if your system has the _etext variable. */
619605c6d89Schristos #define HAVE__ETEXT 1
620605c6d89Schristos 
621605c6d89Schristos /* Define to 1 if you have the `_mcleanup' function. */
622605c6d89Schristos #define HAVE__MCLEANUP 1
623605c6d89Schristos 
62434f40950Schristos /* Path of directory of iconv program. */
62534f40950Schristos /* #undef ICONV_BIN */
62634f40950Schristos 
62734f40950Schristos /* Define if the iconv directory should be relocated when GDB is moved. */
62834f40950Schristos /* #undef ICONV_BIN_RELOCATABLE */
62934f40950Schristos 
630605c6d89Schristos /* Define as const if the declaration of iconv() needs const. */
63177a1ad5fSkamil #define ICONV_CONST
632605c6d89Schristos 
63334f40950Schristos /* directory to load the JIT readers from */
63434f40950Schristos #define JIT_READER_DIR "/usr/lib/gdb"
63534f40950Schristos 
63634f40950Schristos /* Define if the jit-reader-dir directory should be relocated when GDB is
63734f40950Schristos    moved. */
63834f40950Schristos #define JIT_READER_DIR_RELOCATABLE 1
639605c6d89Schristos 
640924795e6Schristos /* Define to the sub-directory in which libtool stores uninstalled libraries.
641924795e6Schristos    */
642924795e6Schristos #define LT_OBJDIR ".libs/"
643924795e6Schristos 
644605c6d89Schristos /* Name of this package. */
645605c6d89Schristos #define PACKAGE "gdb"
646605c6d89Schristos 
647605c6d89Schristos /* Define to the address where bug reports for this package should be sent. */
648605c6d89Schristos #define PACKAGE_BUGREPORT ""
649605c6d89Schristos 
650605c6d89Schristos /* Define to the full name of this package. */
651605c6d89Schristos #define PACKAGE_NAME ""
652605c6d89Schristos 
653605c6d89Schristos /* Define to the full name and version of this package. */
654605c6d89Schristos #define PACKAGE_STRING ""
655605c6d89Schristos 
656605c6d89Schristos /* Define to the one symbol short name of this package. */
657605c6d89Schristos #define PACKAGE_TARNAME ""
658605c6d89Schristos 
659605c6d89Schristos /* Define to the home page for this package. */
660605c6d89Schristos #define PACKAGE_URL ""
661605c6d89Schristos 
662605c6d89Schristos /* Define to the version of this package. */
663605c6d89Schristos #define PACKAGE_VERSION ""
664605c6d89Schristos 
665605c6d89Schristos /* Additional package description */
666605c6d89Schristos #define PKGVERSION "(GDB) "
667605c6d89Schristos 
668605c6d89Schristos /* Define to 1 if the "%H, %D and %DD" formats work to print decfloats. */
669605c6d89Schristos /* #undef PRINTF_HAS_DECFLOAT */
670605c6d89Schristos 
671605c6d89Schristos /* Define to 1 if the "%Lg" format works to print long doubles. */
672605c6d89Schristos /* #undef PRINTF_HAS_LONG_DOUBLE */
673605c6d89Schristos 
674605c6d89Schristos /* Define to 1 if the "%ll" format works to print long longs. */
675605c6d89Schristos /* #undef PRINTF_HAS_LONG_LONG */
676605c6d89Schristos 
67758eb0ebeSchristos /* Define to necessary symbol if this constant uses a non-standard name on
67858eb0ebeSchristos    your system. */
67958eb0ebeSchristos /* #undef PTHREAD_CREATE_JOINABLE */
68058eb0ebeSchristos 
681c358683dSchristos /* Define to the type of arg 1 for ptrace. */
682c358683dSchristos #define PTRACE_TYPE_ARG1 int
683c358683dSchristos 
684605c6d89Schristos /* Define to the type of arg 3 for ptrace. */
685605c6d89Schristos #define PTRACE_TYPE_ARG3 void *
686605c6d89Schristos 
68778ce218aSchristos /* Define to the type of arg 4 for ptrace. */
68878ce218aSchristos #define PTRACE_TYPE_ARG4 int
68978ce218aSchristos 
690605c6d89Schristos /* Define to the type of arg 5 for ptrace. */
691605c6d89Schristos /* #undef PTRACE_TYPE_ARG5 */
692605c6d89Schristos 
693605c6d89Schristos /* Define as the return type of ptrace. */
694605c6d89Schristos #define PTRACE_TYPE_RET int
695605c6d89Schristos 
69658eb0ebeSchristos /* Define if the python lib directory should be relocated when GDB is moved.
69758eb0ebeSchristos    */
69858eb0ebeSchristos /* #undef PYTHON_LIBDIR_RELOCATABLE */
69958eb0ebeSchristos 
700605c6d89Schristos /* Define if the python directory should be relocated when GDB is moved. */
701605c6d89Schristos /* #undef PYTHON_PATH_RELOCATABLE */
702605c6d89Schristos 
703605c6d89Schristos /* Relocated directory for source files. */
704605c6d89Schristos /* #undef RELOC_SRCDIR */
705605c6d89Schristos 
706605c6d89Schristos /* Bug reporting address */
70758eb0ebeSchristos #define REPORT_BUGS_TO "<https://www.gnu.org/software/gdb/bugs/>"
708605c6d89Schristos 
709605c6d89Schristos /* Define to 1 if the "%Lg" format works to scan long doubles. */
710605c6d89Schristos /* #undef SCANF_HAS_LONG_DOUBLE */
711605c6d89Schristos 
712605c6d89Schristos /* Define to 1 if the `setpgrp' function takes no argument. */
713605c6d89Schristos /* #undef SETPGRP_VOID */
714605c6d89Schristos 
71553f9039fSchristos /* The size of `long long', as computed by sizeof. */
71653f9039fSchristos #define SIZEOF_LONG_LONG 8
71753f9039fSchristos 
71834f40950Schristos /* The size of `unsigned long', as computed by sizeof. */
71934f40950Schristos #define SIZEOF_UNSIGNED_LONG 8
72034f40950Schristos 
72134f40950Schristos /* The size of `unsigned long long', as computed by sizeof. */
72234f40950Schristos #define SIZEOF_UNSIGNED_LONG_LONG 8
72334f40950Schristos 
72434f40950Schristos /* The size of `unsigned __int128', as computed by sizeof. */
72578ce218aSchristos #define SIZEOF_UNSIGNED___INT128 16
726605c6d89Schristos 
727924795e6Schristos /* The size of `void *', as computed by sizeof. */
728924795e6Schristos #define SIZEOF_VOID_P 8
729924795e6Schristos 
730605c6d89Schristos /* If using the C implementation of alloca, define if you know the
731605c6d89Schristos    direction of stack growth for your system; otherwise it will be
732605c6d89Schristos    automatically deduced at runtime.
733605c6d89Schristos 	STACK_DIRECTION > 0 => grows toward higher addresses
734605c6d89Schristos 	STACK_DIRECTION < 0 => grows toward lower addresses
735605c6d89Schristos 	STACK_DIRECTION = 0 => direction of growth unknown */
736605c6d89Schristos /* #undef STACK_DIRECTION */
737605c6d89Schristos 
738605c6d89Schristos /* Define to 1 if you have the ANSI C header files. */
739605c6d89Schristos #define STDC_HEADERS 1
740605c6d89Schristos 
741605c6d89Schristos /* automatically load a system-wide gdbinit file */
742605c6d89Schristos #define SYSTEM_GDBINIT ""
743605c6d89Schristos 
74458eb0ebeSchristos /* automatically load system-wide gdbinit files from this directory */
74558eb0ebeSchristos #define SYSTEM_GDBINIT_DIR ""
74658eb0ebeSchristos 
74758eb0ebeSchristos /* Define if the system-gdbinit-dir directory should be relocated when GDB is
74858eb0ebeSchristos    moved. */
74958eb0ebeSchristos #define SYSTEM_GDBINIT_DIR_RELOCATABLE 0
75058eb0ebeSchristos 
751605c6d89Schristos /* Define if the system-gdbinit directory should be relocated when GDB is
752605c6d89Schristos    moved. */
753605c6d89Schristos #define SYSTEM_GDBINIT_RELOCATABLE 0
754605c6d89Schristos 
75534f40950Schristos /* search for usr/lib et al within DIR */
75634f40950Schristos #define TARGET_SYSTEM_ROOT ""
75734f40950Schristos 
75834f40950Schristos /* Define if the sysroot directory should be relocated when GDB is moved. */
75934f40950Schristos #define TARGET_SYSTEM_ROOT_RELOCATABLE 0
76034f40950Schristos 
761605c6d89Schristos /* Define if <thread_db.h> has the TD_NOTALLOC error code. */
762605c6d89Schristos /* #undef THREAD_DB_HAS_TD_NOTALLOC */
763605c6d89Schristos 
764605c6d89Schristos /* Define if <thread_db.h> has the TD_NOTLS error code. */
765605c6d89Schristos /* #undef THREAD_DB_HAS_TD_NOTLS */
766605c6d89Schristos 
767605c6d89Schristos /* Define if <thread_db.h> has the TD_VERSION error code. */
768605c6d89Schristos /* #undef THREAD_DB_HAS_TD_VERSION */
769605c6d89Schristos 
77034f40950Schristos /* Enable extensions on AIX 3, Interix.  */
77134f40950Schristos #ifndef _ALL_SOURCE
77234f40950Schristos # define _ALL_SOURCE 1
77334f40950Schristos #endif
77434f40950Schristos /* Enable GNU extensions on systems that have them.  */
77534f40950Schristos #ifndef _GNU_SOURCE
77634f40950Schristos # define _GNU_SOURCE 1
77734f40950Schristos #endif
77834f40950Schristos /* Enable threading extensions on Solaris.  */
77934f40950Schristos #ifndef _POSIX_PTHREAD_SEMANTICS
78034f40950Schristos # define _POSIX_PTHREAD_SEMANTICS 1
78134f40950Schristos #endif
78234f40950Schristos /* Enable extensions on HP NonStop.  */
78334f40950Schristos #ifndef _TANDEM_SOURCE
78434f40950Schristos # define _TANDEM_SOURCE 1
78534f40950Schristos #endif
78634f40950Schristos /* Enable general extensions on Solaris.  */
78734f40950Schristos #ifndef __EXTENSIONS__
78834f40950Schristos # define __EXTENSIONS__ 1
78934f40950Schristos #endif
79034f40950Schristos 
79134f40950Schristos 
792605c6d89Schristos /* Define if we should use the Windows API, instead of the POSIX API. On
793605c6d89Schristos    Windows, we use the Windows API when building for MinGW, but the POSIX API
794605c6d89Schristos    when building for Cygwin. */
795605c6d89Schristos /* #undef USE_WIN32API */
796605c6d89Schristos 
797c358683dSchristos /* Define if the PPC simulator is being linked in. */
798c358683dSchristos /* #undef WITH_PPC_SIM */
799c358683dSchristos 
80058eb0ebeSchristos /* Directory containing Python's standard libraries from --with-python-libdir.
80158eb0ebeSchristos    */
80258eb0ebeSchristos /* #undef WITH_PYTHON_LIBDIR */
80358eb0ebeSchristos 
804605c6d89Schristos /* Define if --with-python provides a path, either directly or via
805605c6d89Schristos    python-config.py --exec-prefix. */
806605c6d89Schristos /* #undef WITH_PYTHON_PATH */
807605c6d89Schristos 
808605c6d89Schristos /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
809605c6d89Schristos    significant byte first (like Motorola and SPARC, unlike Intel). */
810605c6d89Schristos #if defined AC_APPLE_UNIVERSAL_BUILD
811605c6d89Schristos # if defined __BIG_ENDIAN__
812605c6d89Schristos #  define WORDS_BIGENDIAN 1
813605c6d89Schristos # endif
814605c6d89Schristos #else
815605c6d89Schristos # ifndef WORDS_BIGENDIAN
816605c6d89Schristos /* #  undef WORDS_BIGENDIAN */
817605c6d89Schristos # endif
818605c6d89Schristos #endif
819605c6d89Schristos 
82070cee18aSchristos /* Enable large inode numbers on Mac OS X 10.5.  */
82170cee18aSchristos #ifndef _DARWIN_USE_64_BIT_INODE
82270cee18aSchristos # define _DARWIN_USE_64_BIT_INODE 1
82370cee18aSchristos #endif
82470cee18aSchristos 
825605c6d89Schristos /* Number of bits in a file offset, on hosts where this is settable. */
826605c6d89Schristos /* #undef _FILE_OFFSET_BITS */
827605c6d89Schristos 
828605c6d89Schristos /* Define for large files, on AIX-style hosts. */
829605c6d89Schristos /* #undef _LARGE_FILES */
830605c6d89Schristos 
831605c6d89Schristos /* Define to 1 if on MINIX. */
832605c6d89Schristos /* #undef _MINIX */
833605c6d89Schristos 
834605c6d89Schristos /* Define to 2 if the system does not provide POSIX.1 features except with
835605c6d89Schristos    this defined. */
836605c6d89Schristos /* #undef _POSIX_1_SOURCE */
837605c6d89Schristos 
838605c6d89Schristos /* Define to 1 if you need to in order for `stat' and other things to work. */
839605c6d89Schristos /* #undef _POSIX_SOURCE */
840605c6d89Schristos 
84158eb0ebeSchristos /* Use structured /proc on Solaris. */
84258eb0ebeSchristos #define _STRUCTURED_PROC 1
84358eb0ebeSchristos 
844605c6d89Schristos /* Define to empty if `const' does not conform to ANSI C. */
845605c6d89Schristos /* #undef const */
846605c6d89Schristos 
847605c6d89Schristos /* Define to `__inline__' or `__inline' if that's what the C compiler
848605c6d89Schristos    calls it, or to nothing if 'inline' is not supported under any name.  */
849605c6d89Schristos #ifndef __cplusplus
850605c6d89Schristos /* #undef inline */
851605c6d89Schristos #endif
852605c6d89Schristos 
853605c6d89Schristos /* Define to `int' if <sys/types.h> does not define. */
854605c6d89Schristos /* #undef pid_t */
855605c6d89Schristos 
85670cee18aSchristos /* Define to `unsigned int' if <sys/types.h> does not define. */
85770cee18aSchristos /* #undef size_t */
85870cee18aSchristos 
859605c6d89Schristos /* Define as `fork' if `vfork' does not work. */
860605c6d89Schristos /* #undef vfork */
861