Cpas.
my changes are at pickle.gp2x.de/mupen.zip
The changes are mainly changes to the makefiles and the osd files.
You should be able to change the PREFIX var i put in pre.mk and it should compile.
I turned off GTK and QT4, I didnt see them necessary for what we want to achieve in the short term, and plus it makes it easier to compile. I also hacked around some checks to get things to work quicker, i.e. pkg-config part.
I didnt include the blight plugin, but make this change to compile this tool thats needed during the build process:
Code:
ttftoh: ttftoh.o
gcc $^ -o $@
ifneq ($(OS), WINDOWS)
strip $@
endif
ttftoh.o: ttftoh.c
gcc -o $@ -O3 -c $<
The N64gl also has these flags:
Code:
USES_QT4 = false
USES_GTK2 = false
Thats a far as Ive gotten. I noticed the N64gl is using SDL to init opengl, maybe we can use SDL13 +nanogl? Nanogl just needs it's init function called, but im sure you know that.