2007-07-11 Roland McGrath <roland@redhat.com>

* configure.ac (struct sigcontext.sc_hi2): Use #ifdef around
	<asm/sigcontext.h> to match signal.c include conditions.
This commit is contained in:
Roland McGrath 2007-07-11 07:11:20 +00:00
parent 96affab069
commit d26486e7f9

View File

@ -220,7 +220,9 @@ AC_CHECK_TYPES([struct user_desc],,, [#include <asm/ldt.h>])
AC_CHECK_MEMBERS([struct dqblk.dqb_curblocks],,, [#include <sys/quota.h>])
AC_CHECK_MEMBERS([struct sigcontext.sc_hi2],,, [#include <signal.h>
#include <asm/sigcontext.h>])
#ifdef HAVE_ASM_SIGCONTEXT_H
# include <asm/sigcontext.h>
#endif])
AC_CHECK_DECLS([sys_errlist])