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 - XF86DGA.c requires asm/page.h
Summary: XF86DGA.c requires asm/page.h
Status: RESOLVED FIXED
Alias: None
Product: SDL
Classification: Unclassified
Component: video (show other bugs)
Version: 1.2.11
Hardware: x86 Linux
: P1 normal
Assignee: Ryan C. Gordon
QA Contact: Sam Lantinga
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-07-09 13:32 UTC by Mike Frysinger
Modified: 2007-07-09 22:36 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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!