"Mike Gorchak" <[email protected]> wrote: > In file included from glapi/glapi_getproc.c:77: > glapi/glprocs.h:1616: error: `driDispatchRemapTable' undeclared here > (not in a function) > glapi/glprocs.h:1616: error: `AttachShader_remap_index' undeclared > here (not in a function)
I was facing this exact problem when cross-compiling Mesa 7.2 just two days ago :) In my case, it turned out that my cross-compiling setup (OpenEmbedded) was set up to overwrite SRC_DIRS in the config file, like this: echo "SRC_DIRS = mesa" >> current Altering as follows fixed that particular problem for me: echo "SRC_DIRS = glx/x11 mesa glu glut/glx" >> current Just on the off-chance that that helps you... Tom ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ Mesa3d-dev mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mesa3d-dev
