[E-devel] [PATCH 2/2] ecore/configure: fix ECORE_CHECK_TSLIB

2009-09-22 Thread Marc Andre Tanner
The code was setting _ecore_have_ts but checking _ecore_have_tslib. Signed-off-by: Marc Andre Tanner m...@brain-dump.org --- m4/ecore_check_options.m4 | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/m4/ecore_check_options.m4 b/m4/ecore_check_options.m4 index

[E-devel] [PATCH 1/2] ecore/configure: fix usage of ECORE_CHECK_TSLIB (touchscreen detection)

2009-09-22 Thread Marc Andre Tanner
Signed-off-by: Marc Andre Tanner m...@brain-dump.org --- configure.ac |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 87abb8f..999a333 100644 --- a/configure.ac +++ b/configure.ac @@ -877,7 +877,7 @@ ECORE_CHECK_MODULE([SDL

[E-devel] [PATCH] ecore: fix tslib touchscreen detection

2009-09-22 Thread Marc Andre Tanner
and autohell teritory. The patches were created by looking around for similar constructs in the rest of the code. I hope they are ok, at least they seem to work for me. ] Marc -- Marc Andre Tanner http://www.brain-dump.org/ GPG key: CF7D56C0

[E-devel] Elementary with framebuffer backend font question

2009-10-07 Thread Marc Andre Tanner
pick up the fonts and strace showed that it now tries to acces /usr/share/elementary/themes/default.edj/Sans which doesn't exists. Could anyone explain me how to correctly configure my fonts for a framebuffer environment so that elementary can use them? Thanks, Marc -- Marc Andre Tanner http

Re: [E-devel] Elementary with framebuffer backend font question

2009-10-07 Thread Marc Andre Tanner
On Wed, Oct 07, 2009 at 10:46:23PM +1100, Carsten Haitzler wrote: On Wed, 7 Oct 2009 12:22:08 +0200 Marc Andre Tanner m...@brain-dump.org said: the default theme uses Sans font by default - via fontconfig. you'e missing a Sans alias that works. beats me as to the details. install x and you

Re: [E-devel] Elementary with framebuffer backend font question

2009-10-08 Thread Marc Andre Tanner
After reading through evas_font_dir.c I found the solution (see below). On Wed, Oct 07, 2009 at 12:22:08PM +0200, Marc Andre Tanner wrote: Hi, I am trying to build a minimal elementary with framebuffer backend based initramfs for my Freerunner. I so far cross compiled all the required

Re: [E-devel] Elementary with framebuffer backend font question

2009-10-08 Thread Marc Andre Tanner
environment. But the most comfortable way is not always the best one. And moreover doing things in an non-standard way is fun. Marc -- Marc Andre Tanner http://www.brain-dump.org/ GPG key: CF7D56C0 -- Come build with us

[E-devel] [PATCH] ecore-file: don't use ecore-con if it is disabled

2009-10-11 Thread Marc Andre Tanner
This makes ecore-file useable without ecore-con. Signed-off-by: Marc Andre Tanner m...@brain-dump.org --- src/lib/ecore_file/ecore_file_download.c | 16 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/src/lib/ecore_file/ecore_file_download.c b/src/lib

Re: [E-devel] [PATCH] ecore-file: don't use ecore-con if it is disabled

2009-10-11 Thread Marc Andre Tanner
On Sun, Oct 11, 2009 at 11:43:50PM +0200, Vincent Torri wrote: On Sun, 11 Oct 2009, Marc Andre Tanner wrote: This makes ecore-file useable without ecore-con. better one : http://pastebin.ca/1613582 Why do you think this one is better? It clutters the source with more #ifdef's

Re: [E-devel] [PATCH] ecore-file: don't use ecore-con if it is disabled

2009-10-12 Thread Marc Andre Tanner
On Mon, Oct 12, 2009 at 12:57:51AM +0200, Vincent Torri wrote: On Mon, 12 Oct 2009, Marc Andre Tanner wrote: On Sun, Oct 11, 2009 at 11:43:50PM +0200, Vincent Torri wrote: On Sun, 11 Oct 2009, Marc Andre Tanner wrote: This makes ecore-file useable without ecore-con. better one

[E-devel] [PATCH] evas: compile out unused dither tables

2010-02-17 Thread Marc Andre Tanner
-- (add/remove: 0/1 grow/shrink: 0/0 up/down: 0/-16384) Total: -16384 bytes Signed-off-by: Marc Andre Tanner m...@brain-dump.org --- src/lib/engines/common/evas_convert_main.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/src

[E-devel] [PATCH 1/2] eina: fix wrong EINA_ARG_NONNULL

2010-09-30 Thread Marc Andre Tanner
/src' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/data/projects/qi-bootmenu-system/build/temp-armv4tl/eina' make: *** [all] Error 2 Signed-off-by: Marc Andre Tanner m...@brain-dump.org --- src/include/eina_error.h |2 +- 1 files changed, 1 insertions(+), 1 deletions

[E-devel] [PATCH 2/2] eina: fix compilation if safety checks are disabled

2010-09-30 Thread Marc Andre Tanner
A few files include eina_safety_checks.h and then expect that eina_log.h is also dragged in, however this isn't the case if the safety checks were disabled at configure stage. Include eina_log.h explicitly to fix this. Signed-off-by: Marc Andre Tanner m...@brain-dump.org --- src/lib