From 9a7ba9df2198094fc02df9cd4139567ff7a688bd Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 14 Mar 2007 01:10:43 +0000 Subject: [PATCH] Merge r2990:2991 from branches/SDL-1.2: try to avoid asm/page.h in fbcon. --- src/video/fbcon/SDL_fbvideo.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/video/fbcon/SDL_fbvideo.c b/src/video/fbcon/SDL_fbvideo.c index a80bf3ae0..5b78277da 100644 --- a/src/video/fbcon/SDL_fbvideo.c +++ b/src/video/fbcon/SDL_fbvideo.c @@ -29,7 +29,11 @@ #include #include #include + +#ifndef HAVE_GETPAGESIZE #include /* For definition of PAGE_SIZE */ +#endif + #include #include "SDL_video.h"