Hello,
1. evas_module.diff
Attached patch evas_module.diff had been removed with comment
"Unnecessary..."
Would you please let me know, if there is any thing for building on evil
Windows without this.
2. evas_font_dirr.diff
strndup is GNU extension, anyhow, I'm not sure the 'tmp' is necessary stuff.
If it is.. strndup() should be modified by using eina_unicode_strndup()
3. Question.
1) evas_privat.h
in struct _Evas_Font_Decscription, there is a line as bellow.
Eina_Bool new : 1;
Maybe.. there is a build flag, option to ignore "new" from reserved
word. (gcc ver: 4.5.2)
Or, related lines use the Evas_Font_Description should be changed with
new word.
2) On Windows, using revision 62040, I got the elementary_test.exe
with great help from Mr. Vincent and you.. Thanks :)
One thing what I want to ask is from following steps.
step 1) execute elementary_test.exe
step 2) mouse down on one of list items.
step 3) mouse up on out side of elementary_test.exe window
step 4) now I can scroll up,down without mouse holding
Sincerely,
Shinwoo Kim.
Index: src/lib/file/evas_module.c
===================================================================
--- src/lib/file/evas_module.c (revision 62040)
+++ src/lib/file/evas_module.c (working copy)
@@ -8,7 +8,16 @@
#include <evas_private.h>
#include <evas_module.h>
+#ifdef _WIN32
+# ifdef open
+# undef open
+# endif
+# ifdef close
+# undef close
+# endif
+#endif
+
static Eina_Hash *evas_modules[4] = {
NULL,
NULL,
Index: src/lib/canvas/evas_font_dir.c
===================================================================
--- src/lib/canvas/evas_font_dir.c (revision 62040)
+++ src/lib/canvas/evas_font_dir.c (working copy)
@@ -715,10 +715,7 @@ evas_font_load(Evas *evas, Evas_Font_Description *
end = strchr(start, ',');
if (end)
{
- char *tmp;
- tmp = strndup(start, end - start);
FcPatternAddString (p_nm, FC_FAMILY, (FcChar8*) start);
- free(tmp);
}
else
{
------------------------------------------------------------------------------
BlackBerry® DevCon Americas, Oct. 18-20, San Francisco, CA
The must-attend event for mobile developers. Connect with experts.
Get tools for creating Super Apps. See the latest technologies.
Sessions, hands-on labs, demos & much more. Register early & save!
http://p.sf.net/sfu/rim-blackberry-1
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel