Re: [E-devel] cleanup of the autotools stuff

2008-05-11 Thread Vincent Torri
On Sun, 11 May 2008, Vincent Torri wrote: Hey, I've cleaned a bit the autotools stuff: * use correct way to remove the check of g++ and g77 from libtool * use correct way to deal with PACKAGE_DATA_DIR and PACKAGE_LIB_DIR * use AC_HELP_STRING when missing * formatting later, I plan to

[E-devel] cleanup of the autotools stuff

2008-05-11 Thread Vincent Torri
Hey, I've cleaned a bit the autotools stuff: * use correct way to remove the check of g++ and g77 from libtool * use correct way to deal with PACKAGE_DATA_DIR and PACKAGE_LIB_DIR * use AC_HELP_STRING when missing * formatting later, I plan to add win32 support (compilation without x11. I

[E-devel] Handling hardware keys on maemo with EFL

2008-05-11 Thread Ben Martin
Hi, I notice that things like the fullscreen key on maemo are mapped to F6 by default. Are folks developing for maemo with EFL just using xev to work out the default key bindings and mapping key grabs for those events to callbacks to handle them? This works but isn't exactly straightforward

[E-devel] [Edje] init, add an error message

2008-05-11 Thread watchwolf
hello, I started playing with Edje/Evas and I forgot to inittialize Edje. There is no errors messages when you call an Edje's method without having initialize the library, maybe add a message can be an idea. - This

[E-devel] Windows CE port status and problem

2008-05-11 Thread Vincent Torri
Hey, It seems that the Windows CE port is working. Right now, only 2 backends can be used, but both are deprecated on recent (= 2005) devices. What is working is expedite with most of the tests. I'm quite happy :) The current code in cvs is almost good. Only some minor modifications are on my

Re: [E-devel] [Edje] init, add an error message

2008-05-11 Thread Nick Hughart
My initial thought would be that this is just extra overhead that is not necessary. You would have to check within every call and that could add up quick. It's best to realize that you did not initialize and fix your code. [EMAIL PROTECTED] wrote: hello, I started playing with

Re: [E-devel] [Edje] init, add an error message

2008-05-11 Thread Vincent Torri
On Sun, 11 May 2008, Nick Hughart wrote: My initial thought would be that this is just extra overhead that is not necessary. You would have to check within every call and that could add up quick. It's best to realize that you did not initialize and fix your code. I think that such check