We are currently migrating Bugzilla to GitHub issues.
Any changes made to the bug tracker now will be lost, so please do not post new bugs or make changes to them.
When we're done, all bug URLs will redirect to their equivalent location on the new bug tracker.

Bug 453

Summary: XF86DGA.c requires asm/page.h
Product: SDL Reporter: Mike Frysinger <vapier>
Component: videoAssignee: Ryan C. Gordon <icculus>
Status: RESOLVED FIXED QA Contact: Sam Lantinga <slouken>
Severity: normal    
Priority: P1    
Version: 1.2.11   
Hardware: x86   
OS: Linux   

Description Mike Frysinger 2007-07-09 13:32:13 UTC
src/video/Xext/Xxf86dga/XF86DGA.c breaks on newer kernel systems because asm/page.h is unusable

perhaps a fix like in fbcon.c:
...
#include "SDL_config.h"
...
#ifndef HAVE_GETPAGESIZE
#include <asm/page.h>   /* PAGE_SIZE */
#endif
...
Comment 1 Ryan C. Gordon 2007-07-09 13:35:24 UTC
Bumping to P1 for consideration in the 1.2.12 release.

--ryan.

Comment 2 Sam Lantinga 2007-07-09 22:36:24 UTC
This is fixed in revision 3192, thanks!