diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c index a17488ee1d0..ff3670eeb1d 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -7709,6 +7709,12 @@ enum defined_HAVE_X_WINDOWS { defined_HAVE_X_WINDOWS = true }; | |||
| 7709 | enum defined_HAVE_X_WINDOWS { defined_HAVE_X_WINDOWS = false }; | 7709 | enum defined_HAVE_X_WINDOWS { defined_HAVE_X_WINDOWS = false }; |
| 7710 | #endif | 7710 | #endif |
| 7711 | 7711 | ||
| 7712 | #ifdef HAVE_PGTK | ||
| 7713 | enum defined_HAVE_PGTK { defined_HAVE_PGTK = true }; | ||
| 7714 | #else | ||
| 7715 | enum defined_HAVE_PGTK { defined_HAVE_PGTK = false }; | ||
| 7716 | #endif | ||
| 7717 | |||
| 7712 | /* When compiled with GCC, GDB might say "No enum type named | 7718 | /* When compiled with GCC, GDB might say "No enum type named |
| 7713 | pvec_type" if we don't have at least one symbol with that type, and | 7719 | pvec_type" if we don't have at least one symbol with that type, and |
| 7714 | then xbacktrace could fail. Similarly for the other enums and | 7720 | then xbacktrace could fail. Similarly for the other enums and |
| @@ -7728,5 +7734,6 @@ union | |||
| 7728 | enum More_Lisp_Bits More_Lisp_Bits; | 7734 | enum More_Lisp_Bits More_Lisp_Bits; |
| 7729 | enum pvec_type pvec_type; | 7735 | enum pvec_type pvec_type; |
| 7730 | enum defined_HAVE_X_WINDOWS defined_HAVE_X_WINDOWS; | 7736 | enum defined_HAVE_X_WINDOWS defined_HAVE_X_WINDOWS; |
| 7737 | enum defined_HAVE_PGTK defined_HAVE_PGTK; | ||
| 7731 | } const EXTERNALLY_VISIBLE gdb_make_enums_visible = {0}; | 7738 | } const EXTERNALLY_VISIBLE gdb_make_enums_visible = {0}; |
| 7732 | #endif /* __GNUC__ */ | 7739 | #endif /* __GNUC__ */ |