diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-12-08 23:54:21 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-12-08 23:54:21 +0000 |
commit | f390baacae079aaa4f02172c58de5032d7795f31 (patch) | |
tree | 1c1c8ea15b95c3c6affc6b3856a93c448d654f4f /boehm-gc/configure.ac | |
parent | b26090ec82310d54b2c318bcc6b4a8e15062588c (diff) | |
download | gcc-f390baacae079aaa4f02172c58de5032d7795f31.tar.gz |
* configure.ac: Fix x86 darwin builds.
* darwin_stop_world.c: Likewise.
* include/private/gcconfig.h: Likewise.
* connfigure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@119670 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc/configure.ac')
-rw-r--r-- | boehm-gc/configure.ac | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/boehm-gc/configure.ac b/boehm-gc/configure.ac index 45937dcf9b9..84dd7ec8d66 100644 --- a/boehm-gc/configure.ac +++ b/boehm-gc/configure.ac @@ -267,11 +267,13 @@ case "$host" in AC_CHECK_MEMBER(i386_thread_state_t.eax, AC_DEFINE(HAS_I386_THREAD_STATE_EAX,,dnl [i386_thread_state_t has field eax]),, - [#include <mach/thread_status.h>]) + [#include <sys/cdefs.h> +#include <mach/thread_status.h>]) AC_CHECK_MEMBER(i386_thread_state_t.__eax, AC_DEFINE(HAS_I386_THREAD_STATE___EAX,,dnl [i386_thread_state_t has field __eax]),, - [#include <mach/thread_status.h>]) + [#include <sys/cdefs.h> +#include <mach/thread_status.h>]) ;; *) ;; esac |