[E-devel] [eina] error if __attribute__ does not exist

2009-01-10 Thread Vincent Torri
Hey, Timothy Horton (the author of the quartz engine) has a version of gcc that does not detect __attribute__ (i don't know why yet, that is if the mac os x port of gcc does not support that extension, or if the m4 macro is not correctly written). Anyway, if __attribute__ is not defined, then

Re: [E-devel] error from evas

2009-01-10 Thread Massimo Maiurana
Massimo Maiurana, il 06/01/2009 13:42, scrisse: > ../../../src/lib/include/../file/evas_module.h:54: error: expected > specifier-qualifier-list before 'pthread_spinlock_t' updated svn and still getting the same error. googling around I found a way to get it build by editing /usr/include/bits/po

Re: [E-devel] [Patch] Illume keyboard dictionary fix and speedup

2009-01-10 Thread Olof Sjobergh
On Wed, Jan 7, 2009 at 9:34 PM, Olof Sjobergh wrote: > I was having some trouble with utf8 chars in my Swedish dictionary for > the Illume keyboard, so I took a look at the code and fixed the issue. > I was also able to speed up the searching. > > As hinted by the FIXME on the function _e_kbd_dict

Re: [E-devel] ecore compiling problem with directfb

2009-01-10 Thread Gustavo Sverzut Barbieri
2009/1/10 Oguz Yarimtepe : > I solved it by googling a bit. Let me share it. > > I changed the name of the function eina_hash_del in > src/lib/ecore_directfb/ecore_directfb.c to eina_hash_del_by_key and > also commented the unsigned int _ecore_directfb_hash_create(void *key) > definition (line 102

Re: [E-devel] ecore compiling problem with directfb

2009-01-10 Thread Oguz Yarimtepe
I solved it by googling a bit. Let me share it. I changed the name of the function eina_hash_del in src/lib/ecore_directfb/ecore_directfb.c to eina_hash_del_by_key and also commented the unsigned int _ecore_directfb_hash_create(void *key) definition (line 102 to 103). Then it is compiled and insta