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