On Mon, Mar 10, 2014 at 4:22 AM, Christopher Michael <devilho...@comcast.net> wrote: > devilhorns pushed a commit to branch master. > > http://git.enlightenment.org/core/efl.git/commit/?id=8a8924ba7988d554a19ec3a2e7eccbf7bfee5c60 > > commit 8a8924ba7988d554a19ec3a2e7eccbf7bfee5c60 > Author: Chris Michael <cp.mich...@samsung.com> > Date: Mon Mar 10 07:20:26 2014 +0000 > > evas-fb: Fix broken build of efl > > @bugfix: structure fb_var_screeninfo does not have a colorspace field > defined in linux/fb.h, so (for now) comment out code which was > referencing that field. Not sure what the intent was here, but build > was broken because of this. > > Signed-off-by: Chris Michael <cp.mich...@samsung.com> > --- > src/modules/evas/engines/fb/evas_fb_main.c | 19 ++++++++++++------- > 1 file changed, 12 insertions(+), 7 deletions(-) > > diff --git a/src/modules/evas/engines/fb/evas_fb_main.c > b/src/modules/evas/engines/fb/evas_fb_main.c > index b93e440..de6f65a 100644 > --- a/src/modules/evas/engines/fb/evas_fb_main.c > +++ b/src/modules/evas/engines/fb/evas_fb_main.c > @@ -242,13 +242,18 @@ fb_var_str_convert(const struct fb_var_screeninfo *fbv) > > eina_strbuf_append_printf(buf, > ", " > - "rotate=%u, " > - "colorspace=%u", > - fbv->rotate, > - fbv->colorspace); > - > - if (fbv->colorspace) > - eina_strbuf_append_n(buf, (const char *)&(fbv->colorspace), 4); > + "rotate=%u, ", > + fbv->rotate); > + > + /* eina_strbuf_append_printf(buf, */ > + /* ", " */ > + /* "rotate=%u, " */ > + /* "colorspace=%u", */ > + /* fbv->rotate, */ > + /* fbv->colorspace); */ > + > + /* if (fbv->colorspace) */ > + /* eina_strbuf_append_n(buf, (const char *)&(fbv->colorspace), 4); */
while this is only for debug purposes and shouldn't matter much, I wonder which kernel-headers version do you have. Because it does exit in ArchLinux 3.13.12, the linux/fb.h header has no marks saying when it was added. my bad. -- Gustavo Sverzut Barbieri -------------------------------------- Mobile: +55 (19) 99225-2202 Contact: http://www.gustavobarbieri.com.br/contact ------------------------------------------------------------------------------ Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaimed leaders in the field, this first edition is now available. Download your free book today! http://p.sf.net/sfu/13534_NeoTech _______________________________________________ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel