diff options
author | Roger Sayle <roger@eyesopen.com> | 2006-06-13 16:36:40 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2006-06-13 16:36:40 +0000 |
commit | de4fb767a9e80685a673a65b590774336f108c4f (patch) | |
tree | b71d95bf298d88fafe0da71a059aa32d7244a9cf /gcc/configure | |
parent | 572f9e47d337227229ab222bd9e1ff943f77b127 (diff) | |
download | gcc-de4fb767a9e80685a673a65b590774336f108c4f.zip gcc-de4fb767a9e80685a673a65b590774336f108c4f.tar.gz gcc-de4fb767a9e80685a673a65b590774336f108c4f.tar.bz2 |
configure.ac (HAS_MCONTEXT_T_UNDERSCORES): Include <sys/signal.h> before <ucontext.h> to define sigset_t required by...
* configure.ac (HAS_MCONTEXT_T_UNDERSCORES): Include <sys/signal.h>
before <ucontext.h> to define sigset_t required by <sys/ucontext.h>.
* configure: Regenerate.
From-SVN: r114614
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/configure b/gcc/configure index d170a3a..43d5fe5 100755 --- a/gcc/configure +++ b/gcc/configure @@ -12289,6 +12289,7 @@ if test "${gcc_cv_mcontext_underscores+set}" = set; then else cat >conftest.$ac_ext <<_ACEOF +#include <sys/signal.h> #include <ucontext.h> int main() { mcontext_t m; if (m->ss.srr0) return 0; return 0; } |