Thank you for making this available, could you please indicate where the different files have to be place in order to compile apps which require them? Can they just be place in any of the "lib" folders?
[div align=\"right\"][a href=\"index.php?act=findpost&pid=123979\"][{POST_SNAPBACK}][/a][/div]
Sorry, haven't checked this forum for ages.
If you have not already found out -
The shared libraries need to be in whatever path is searched for libraries under your setup or specified in the makefile eg
(In Makefile)
LIBS = $(SUBLIBS) -L$(QTDIR)/lib -lqpe -ljpeg -lqte
so place libSDL_mixer.so in $(QTDIR)/lib and amend the line to
LIBS = $(SUBLIBS) -L$(QTDIR)/lib -lqpe -ljpeg -lqte -lSDL_mixer or whatever is required.
If you want to include a static library such as libSDLmain.a I have always found it easier to copy it to the same directory you are building from and modify the Makefile line to
LIBS = $(SUBLIBS) -L$(QTDIR)/lib -lqpe -ljpeg -lqte -lSDL_mixer ./libSDLmain.a
regards
Melee