errors while install SDL

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
alpher
Posts: 5
Joined: Mon Nov 17, 2008 4:44 pm

errors while install SDL

Post by alpher »

hi, everyone, I need to install SDL in pspdev, but after
svn co svn://svn.pspdev.org/psp/trunk/SDL
cd SDL
./autogen
make
I got an error like this:
XF86DGA.c:21:40: error: asm/page.h: No such file or directory
make[3]: *** [XF86DGA.lo] error 1
make[3]: Leaving directory `/home/alpher/SDL/src/video/XFree86/Xxf86dga'
make[2]: *** [all-recursive] error1
make[2]: Leaving directory `/home/alpher/SDL/src/video'
make[1]: *** [all-recursive] error 1
make[1]: Leaving directory `/home/alpher/SDL/src'
make: *** [all-recursive] error 1


It is seems that the file page.h is removed in new kernel,
but how can i install SDL if the source code in svn does not work?
anyone help me?!

thanks
ooPo
Site Admin
Posts: 2023
Joined: Sat Jan 17, 2004 9:56 am
Location: Canada
Contact:

Post by ooPo »

From the README.PSP file:
Building
--------
To build for the PSP, make sure psp-config is in the path and run:

./autogen.sh
LDFLAGS="-L$(psp-config --pspsdk-path)/lib -lc -lpspuser" \
./configure --host psp --prefix=$(psp-config --psp-prefix)
make
make install
I don't think it should be trying to compile the XFree86 driver.
alpher
Posts: 5
Joined: Mon Nov 17, 2008 4:44 pm

Post by alpher »

Thanks
Post Reply