1.1 --- a/src/video/ps2gs/SDL_gsyuv.c Sat Oct 10 09:58:32 2009 +0000
1.2 +++ b/src/video/ps2gs/SDL_gsyuv.c Sat Oct 10 09:59:29 2009 +0000
1.3 @@ -180,7 +180,7 @@
1.4
1.5 /* Allocate a DMA area for pixel conversion */
1.6 bpp = this->screen->format->BytesPerPixel;
1.7 - map_offset = (mapped_len + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
1.8 + map_offset = (mapped_len + (sysconf(_SC_PAGESIZE) - 1)) & ~(sysconf(_SC_PAGESIZE) - 1);
1.9 hwdata->dma_len = hwdata->macroblocks * (16 * 16 + 8 * 8 + 8 * 8) +
1.10 width * height * bpp +
1.11 hwdata->macroblocks * (16 * sizeof(long long)) +