Christoph Hellwig wrote: > > --- signal.h 30 Sep 2003 14:27:29 -0000 1.17 > > +++ signal.h 6 Jan 2005 04:21:58 -0000 > > @@ -135,7 +135,7 @@ > > > > struct k_sigaction { > > struct sigaction sa; > > -#ifdef CONFIG_BINFMT_IRIX > > +#if !defined(CONFIG_CPU_LITTLE_ENDIAN) > > void (*sa_restorer)(void); > > #endif > > #ifdef __mipseb__ maybe? AFAICS most parts of the kernel seem to prefer CONFIG_CPU_LITTLE_ENDIAN over compiler-dependent macros. (And IIRC it would need to be __MIPSEB.) Thiemo