Re: [E-devel] Fixing EFL and input focus on Maemo5/Fremantle

2009-12-14 Thread The Rasterman
On Mon, 14 Dec 2009 23:04:10 + Valerio Valerio said: > > do you have info on what really this is for and why? right now, i don't > > "get > > it" where this is meant to be, and why. the qt patches imply it's for > > take_focus handling - and qt uses this focus mode last i checked. gtk and >

Re: [E-devel] E SVN: cedric trunk/evas/src/lib/canvas

2009-12-14 Thread Vincent Torri
shouldn't the fontconfig calls be guarded ? it seems that some guards are missing Vincent On Mon, 14 Dec 2009, Enlightenment SVN wrote: > Log: > * evas_font_dir: reduce use of FcFontSort by using cache as much as > possible. > > This reduce in EWeather the time spend in FcFontSor

Re: [E-devel] Help with website, trac and docs!

2009-12-14 Thread Gustavo Sverzut Barbieri
On Mon, Dec 14, 2009 at 11:47 AM, Andres Blanc wrote: > On Domingo 13 Diciembre 2009 04:42:56 Gustavo Sverzut Barbieri escribió: >> On Sun, Dec 13, 2009 at 5:35 AM, Vincent Torri wrote: >> >> that needs to go. trac news isnt used. >> > >> > are you sure ? I use it, Gustavo too. >> > >> > Planet i

Re: [E-devel] Help with website, trac and docs!

2009-12-14 Thread Andres Blanc
On Domingo 13 Diciembre 2009 04:42:56 Gustavo Sverzut Barbieri escribió: > On Sun, Dec 13, 2009 at 5:35 AM, Vincent Torri wrote: > >> that needs to go. trac news isnt used. > > > > are you sure ? I use it, Gustavo too. > > > > Planet is also used but it is not mentioned in the web site. > > trac

Re: [E-devel] Fix Cocoa framework detection problem

2009-12-14 Thread Vincent Torri
On Mon, 14 Dec 2009, Nicolas Aguirre wrote: > Ecore detects cocoa framework this way and works well. > This "code" comes from ecore configure.ac it's embedded in a test. I asked if it is the correct way to do this. Vincent --

Re: [E-devel] Fix Cocoa framework detection problem

2009-12-14 Thread Nicolas Aguirre
2009/12/14 Vincent Torri : > > > On Mon, 14 Dec 2009, Nicolas Aguirre wrote: > >> +AC_LANG_PUSH([Objective C]) >> + >> +AC_CHECK_HEADER([Cocoa/Cocoa.h], >> +    [ >> +        have_dep="yes" >> +       evas_engine_[]$1[]_libs="-framework Cocoa" >> +    ], >> +    [have_dep="no"] >> ) >> >> +AC_LANG_

Re: [E-devel] Fix Cocoa framework detection problem

2009-12-14 Thread Vincent Torri
On Mon, 14 Dec 2009, Nicolas Aguirre wrote: > +AC_LANG_PUSH([Objective C]) > + > +AC_CHECK_HEADER([Cocoa/Cocoa.h], > +[ > +have_dep="yes" > + evas_engine_[]$1[]_libs="-framework Cocoa" > +], > +[have_dep="no"] > ) > > +AC_LANG_POP([Objective C]) i have already tried that