On 7/24/06, Scott Dial <[EMAIL PROTECTED]> wrote: > I attempted to translate a pypy-c in windows today. I had to mask out > including sys/mman.h. Afterwards, I was able to succesfully translate. > > Index: ll_osdefs.h > =================================================================== > --- ll_osdefs.h (revision 30390) > +++ ll_osdefs.h (working copy) > @@ -42,7 +42,9 @@ > > #include <sys/types.h> > > +#if !defined(MS_WINDOWS) > #include <sys/mman.h> > +#endif > > #ifdef HAVE_STROPTS_H > #include <stropts.h>
That was my fault. It has been fixed. Thanks -- Lawrence http://www.oluyede.org/blog _______________________________________________ [email protected] http://codespeak.net/mailman/listinfo/pypy-dev
