diff options
author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-03 02:07:36 +0000 |
---|---|---|
committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-03 02:07:36 +0000 |
commit | 168c58e0bbae3def1c0ee17e7a226c4e3d9081ff (patch) | |
tree | 7db99eb5a7164070b8702b056eadc9042dc95f03 /gcc/config.in | |
parent | 920bea8ab8f3890ad0017c271986fdf710eed081 (diff) | |
download | gcc-168c58e0bbae3def1c0ee17e7a226c4e3d9081ff.tar.gz |
Index: gcc/ChangeLog
2006-06-02 Geoffrey Keating <geoffk@apple.com>
* config/rs6000/host-darwin.c (sigaltstack): Protect prototype with
HAVE_DECL_SIGALTSTACK.
(MC_FLD): New.
(segv_handler): Use MC_FLD.
* configure.ac: Check for a sigaltstack declaration.
Compute HAS_MCONTEXT_T_UNDERSCORES on Darwin.
* configure: Regenerate.
* config.in: Regenerate.
Index: boehm-gc/ChangeLog
2006-06-02 Geoffrey Keating <geoffk@apple.com>
* configure.ac: Define HAS_PPC_THREAD_STATE_R0,
HAS_PPC_THREAD_STATE___R0, HAS_PPC_THREAD_STATE64_R0,
HAS_PPC_THREAD_STATE64___R0, HAS_I386_THREAD_STATE_EAX,
HAS_I386_THREAD_STATE___EAX.
* configure: Regenerate.
* include/gc_config.h.in: Regenerate.
* darwin_stop_world.c (PPC_RED_ZONE_SIZE): Use standard Darwin
macro names to determine value.
(THREAD_STATE): New.
(THREAD_FLD): New.
(GC_push_all_stacks): Use THREAD_STATE and THREAD_FLD in both versions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@114339 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 98e34388dff..d5f854ef959 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -148,6 +148,12 @@ #endif +/* mcontext_t fields start with __ */ +#ifndef USED_FOR_TARGET +#undef HAS_MCONTEXT_T_UNDERSCORES +#endif + + /* Define to 1 if you have the `alphasort' function. */ #ifndef USED_FOR_TARGET #undef HAVE_ALPHASORT @@ -568,6 +574,13 @@ #endif +/* Define to 1 if we found a declaration for 'sigaltstack', otherwise define + to 0. */ +#ifndef USED_FOR_TARGET +#undef HAVE_DECL_SIGALTSTACK +#endif + + /* Define to 1 if we found a declaration for 'snprintf', otherwise define to 0. */ #ifndef USED_FOR_TARGET |