Commit | Line | Data |
---|---|---|
c906108c SS |
1 | |
2 | /* Whether malloc must be declared even if <stdlib.h> is included. */ | |
3 | #undef NEED_DECLARATION_MALLOC | |
4 | ||
5 | /* Whether realloc must be declared even if <stdlib.h> is included. */ | |
6 | #undef NEED_DECLARATION_REALLOC | |
7 | ||
8 | /* Whether free must be declared even if <stdlib.h> is included. */ | |
9 | #undef NEED_DECLARATION_FREE | |
10 | ||
11 | /* Whether strerror must be declared even if <string.h> is included. */ | |
12 | #undef NEED_DECLARATION_STRERROR | |
13 | @TOP@ | |
14 | ||
15 | /* Define if pstatus_t type is available */ | |
16 | #undef HAVE_PSTATUS_T | |
17 | ||
18 | /* Define if prrun_t type is available */ | |
19 | #undef HAVE_PRRUN_T | |
20 | ||
21 | /* Define if fpregset_t type is available. */ | |
22 | #undef HAVE_FPREGSET_T | |
23 | ||
24 | /* Define if gregset_t type is available. */ | |
25 | #undef HAVE_GREGSET_T | |
26 | ||
27 | /* Define if ioctl argument PIOCSET is available. */ | |
28 | #undef HAVE_PROCFS_PIOCSET | |
29 | ||
30 | /* /proc PID entries are directories containing the files | |
31 | ctl as map status */ | |
32 | #undef HAVE_MULTIPLE_PROC_FDS | |
33 | ||
34 | /* Define if the `long long' type works. */ | |
35 | #undef CC_HAS_LONG_LONG | |
36 | ||
37 | /* Define if the "ll" format works to print long long ints. */ | |
38 | #undef PRINTF_HAS_LONG_LONG | |
39 | ||
40 | /* Define if the "%Lg" format works to print long doubles. */ | |
41 | #undef PRINTF_HAS_LONG_DOUBLE | |
42 | ||
43 | /* Define if the "%Lg" format works to scan long doubles. */ | |
44 | #undef SCANF_HAS_LONG_DOUBLE | |
45 | ||
46 | /* Define if using Solaris thread debugging. */ | |
47 | #undef HAVE_THREAD_DB_LIB | |
48 | ||
49 | /* Define on a GNU/Linux system to work around problems in sys/procfs.h. */ | |
50 | #undef START_INFERIOR_TRAPS_EXPECTED | |
51 | #undef sys_quotactl | |
52 | ||
53 | /* Define if you have HPUX threads */ | |
54 | #undef HAVE_HPUX_THREAD_SUPPORT | |
55 | ||
56 | /* Define if you want to use the memory mapped malloc package (mmalloc). */ | |
57 | #undef USE_MMALLOC | |
58 | ||
59 | /* Define if the runtime uses a routine from mmalloc before gdb has a chance | |
60 | to initialize mmalloc, and we want to force checking to be used anyway. | |
61 | This may cause spurious memory corruption messages if the runtime tries | |
62 | to explicitly deallocate that memory when gdb calls exit. */ | |
63 | #undef MMCHECK_FORCE | |
64 | ||
65 | /* Define to 1 if NLS is requested. */ | |
66 | #undef ENABLE_NLS | |
67 | ||
68 | /* Define as 1 if you have catgets and don't want to use GNU gettext. */ | |
69 | #undef HAVE_CATGETS | |
70 | ||
71 | /* Define as 1 if you have gettext and don't want to use GNU gettext. */ | |
72 | #undef HAVE_GETTEXT | |
73 | ||
74 | /* Define as 1 if you have the stpcpy function. */ | |
75 | #undef HAVE_STPCPY | |
76 | ||
77 | /* Define if your locale.h file contains LC_MESSAGES. */ | |
78 | #undef HAVE_LC_MESSAGES | |
79 | ||
80 | /* Define if you want to use the full-screen terminal user interface. */ | |
81 | #undef TUI | |
82 | ||
83 | /* Define if <proc_service.h> on solaris uses int instead of | |
84 | size_t, and assorted other type changes. */ | |
85 | #undef PROC_SERVICE_IS_OLD | |
86 | ||
87 | /* If you want to specify a default CPU variant, define this to be its | |
88 | name, as a C string. */ | |
89 | #undef TARGET_CPU_DEFAULT | |
90 | ||
7a292a7a SS |
91 | /* Define if the simulator is being linked in. */ |
92 | #undef WITH_SIM | |
93 | ||
c906108c SS |
94 | /* Set to true if the save_state_t structure is present */ |
95 | #define HAVE_STRUCT_SAVE_STATE_T 0 | |
96 | ||
97 | /* Set to true if the save_state_t structure has the ss_wide member */ | |
98 | #define HAVE_STRUCT_MEMBER_SS_WIDE 0 |