|
From: Brian P. <bri...@tu...> - 2008-09-11 17:41:13
|
Manish wrote: > Hi Brian > Thanks for your reply > Step 1 > I download Souce code from > git clone > git://anongit.freedesktop.org/git/mesa/mesa > <http://anongit.freedesktop.org/git/mesa/mesa> > > Step 2 > I modified the makeFile " vi configs/linux-directfb" > 1) to remove dependency on makedepend > MKDEP = gcc > MKDEP_OPTIONS = -M -o depend > > > and 2) To give path of library file like lfusion, ldirectfb > APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) > -l$(GLU_LIB) -l$(GLUT_LIB) -L/usr/local/lib -ldirectfb -ldirect -lfusion > > > Step 3 > make linux-directfb > > It seems after that It able to build MesaLib and MesaGlut but it > have some problem in building Sample and Demo program. > Please find error log below > > Thanks a lot > > PS: I am using Scratch Box . My system do not have X. It looks like all the API entrypoint/dispatch functions are missing from libGL. They should be defined in the libglapi.a lib which is referenced at line 28 of src/mesa/drivers/directfb/Makefile. You might run 'nm' on that .a and see what you find. Hopefully you can debug/fix this. -Brian |