Ecrire: Fix efl 1.7.5 compilation failure and update README file

This commit is contained in:
Godfath3r 2013-03-15 10:06:21 +00:00 committed by Tom Hacohen
parent 6e1f65bc1d
commit 345005bec8
2 changed files with 9 additions and 0 deletions

5
README
View File

@ -7,3 +7,8 @@ $ mkdir build
$ cd build
$ cmake ..
$ make && sudo make install
If you're trying to build in a machine where you have efl 1.7.5 libraries installed,
you must first run:
$ mv cmake/Modules/legacy/* cmake/Modules/

View File

@ -75,7 +75,11 @@ _find_in_entry(Evas_Object *entry, const char *text, Eina_Bool jump_next)
while ((utf8 + idx) < found)
{
pos++;
#if (EINA_VERSION_MAJOR > 1) || (EINA_VERSION_MINOR >= 8)
eina_unicode_utf8_next_get(utf8, &idx);
#else
eina_unicode_utf8_get_next(utf8, &idx);
#endif
}
elm_entry_select_none(entry);