Hi Dave You applied the following patch which breaks fbdev-egl backend: http://cgit.freedesktop.org/mesa/mesa/commit/src/gallium/state_trackers/egl/fbdev/native_fbdev.c?id=b60120608f6ddf4098bc324363197c979ee04cb7 It doesn't compile anymore. I appended the correct fix below. I also CC'ed mesa-dev and the people who reviewed the original patch this time as I have no idea who I need to send this to. Thanks David ********************************************** egl-fbdev: Fix compile-error by including errno.h We use errno and EINVAL so include errno.h. Signed-off-by: David Herrmann <dh.herrmann@xxxxxxxxxxxxxx> --- src/gallium/state_trackers/egl/fbdev/native_fbdev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/state_trackers/egl/fbdev/native_fbdev.c b/src/gallium/state_trackers/egl/fbdev/native_fbdev.c index b45ab5c..b17a8ce 100644 --- a/src/gallium/state_trackers/egl/fbdev/native_fbdev.c +++ b/src/gallium/state_trackers/egl/fbdev/native_fbdev.c @@ -41,6 +41,7 @@ * - no pixmap support */ +#include <errno.h> #include <sys/ioctl.h> #include <sys/types.h> #include <sys/stat.h> -- 1.7.10 _______________________________________________ dri-devel mailing list dri-devel@xxxxxxxxxxxxxxxxxxxxx http://lists.freedesktop.org/mailman/listinfo/dri-devel