platform/upstream/efl.git
11 years agoefl: remove --print-gc-sections: too annoying.
Gustavo Sverzut Barbieri [Mon, 31 Dec 2012 01:45:14 +0000 (01:45 +0000)]
efl: remove --print-gc-sections: too annoying.

okay, remove that print as it will always print sections removed from
PIC leftovers, etc.

keep the --gc-sections, it's useful to shrink binaries. Developers
willing to delete dead code can --print-gc-sections themselves.

SVN revision: 81920

11 years agoefl/evas: add ecore-evas dependent examples.
Gustavo Sverzut Barbieri [Mon, 31 Dec 2012 01:40:50 +0000 (01:40 +0000)]
efl/evas: add ecore-evas dependent examples.

nice feature of single tree efl is that evas examples can use ecore-evas :-)

SVN revision: 81919

11 years agoefl: rename eina_inarray_add to eina_inarray_grow.
Cedric BAIL [Mon, 31 Dec 2012 01:27:58 +0000 (01:27 +0000)]
efl: rename eina_inarray_add to eina_inarray_grow.

SVN revision: 81918

11 years agoefl: unbreak last commit.
Gustavo Sverzut Barbieri [Mon, 31 Dec 2012 01:13:47 +0000 (01:13 +0000)]
efl: unbreak last commit.

seems that automake will parse LDFLAGS for -module and if it's not
present it will complain about name not starting with 'lib'.

seems my last try was without NOCONFIGURE=1 and autogen continued to
the old ./configure, that printed lots of messages and the error went
unnoticed

SVN revision: 81917

11 years agoefl: create macro to simplify libtool module declaration.
Gustavo Sverzut Barbieri [Mon, 31 Dec 2012 00:54:48 +0000 (00:54 +0000)]
efl: create macro to simplify libtool module declaration.

SVN revision: 81916

11 years agoefl: refactor CFLAGS, LIBS, LIBADD and LDADD usage.
Gustavo Sverzut Barbieri [Mon, 31 Dec 2012 00:46:14 +0000 (00:46 +0000)]
efl: refactor CFLAGS, LIBS, LIBADD and LDADD usage.

 - remove EFL_LIBS and EFL_CFLAGS, use per-lib values that inherit
   from EFL (general)

 - add NAME_LDFLAGS and EFL_LDFLAGS for linker flags.

 - LDADD (binaries) now use NAME_LDFLAGS instead of NAME_LIBS, as they
   link to libname.la and that will pull in the libtool dependencies

SVN revision: 81915

11 years agoefl: forgotten evas commit.
Cedric BAIL [Mon, 31 Dec 2012 00:24:40 +0000 (00:24 +0000)]
efl: forgotten evas commit.

SVN revision: 81914

11 years agoefl: add a way to allocate without memcpy data in an Eina_Inarray.
Cedric BAIL [Mon, 31 Dec 2012 00:05:02 +0000 (00:05 +0000)]
efl: add a way to allocate without memcpy data in an Eina_Inarray.

SVN revision: 81913

11 years agoefl: limit regression with async rendering.
Cedric BAIL [Sun, 30 Dec 2012 23:39:11 +0000 (23:39 +0000)]
efl: limit regression with async rendering.

NOTE: There is still an issue with text rendering, that
is still 4 times slower and impact all text object (text,
textblock and textgrid).

SVN revision: 81912

11 years agoefl: unify LDFLAGS for LTLIBRARIES
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 22:15:29 +0000 (22:15 +0000)]
efl: unify LDFLAGS for LTLIBRARIES

SVN revision: 81911

11 years agoefl: move -lm to configure.ac variables.
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 21:52:34 +0000 (21:52 +0000)]
efl: move -lm to configure.ac variables.

EFL_ADD_LIBS() will add to requirements_libs_NAME and that will end
into NAME_LIBS.

SVN revision: 81910

11 years agoefl: refactor EFL_CHECK_LIB() and EFL_CHECK_FUNC()
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 21:10:52 +0000 (21:10 +0000)]
efl: refactor EFL_CHECK_LIB() and EFL_CHECK_FUNC()

 - introduce EFL_CHECK_LIB_CODE() that does the try-link

 - introduce EFL_FIND_LIB_FOR_CODE() that will use
   EFL_CHECK_LIB_CODE() into multiple libraries

 - also fix dladdr() test (was missing .h in #include <stdlib>)

SVN revision: 81909

11 years agoefl: minor AC_CHECK_LIB() cleanup.
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 19:05:18 +0000 (19:05 +0000)]
efl: minor AC_CHECK_LIB() cleanup.

SVN revision: 81908

11 years agoefl: EFL_CHECK_LIBS() is strict, simplify it then.
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 18:55:56 +0000 (18:55 +0000)]
efl: EFL_CHECK_LIBS() is strict, simplify it then.

as we abort (AC_MSG_ERROR) if not found, simplify the code.

SVN revision: 81907

11 years agoefl: add compiler flags
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 18:37:59 +0000 (18:37 +0000)]
efl: add compiler flags

 * -fvisibility=hidden will hide symbols not marked with EAPI in the
    final binary (so/executable).

 * -ffunction-sections and -fdata-sections will split those into
    independent elf sections, then we can -Wl,--gc-sections for those
    that are unused. During development --Wl,--print-gc-sections will
    warn us of functions that are left unused and were collected.

SVN revision: 81906

11 years agoefl: uniform compiler flags.
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 18:28:26 +0000 (18:28 +0000)]
efl: uniform compiler flags.

note: dns.c were already emitting warnings regarding shadow, so I
removed the flag to quiet override-init. It will a bit louder, but
then we remember it would be better to rewrite this dns in proper EFL.

SVN revision: 81905

11 years agoefl/configure: simplify configure.ac
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 18:08:55 +0000 (18:08 +0000)]
efl/configure: simplify configure.ac

more macros to aid common tasks, make it easier to read.

SVN revision: 81904

11 years agoefl/configure: simplify lib declaration.
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 15:21:33 +0000 (15:21 +0000)]
efl/configure: simplify lib declaration.

added couple of macros:

 - EFL_LIB_START(PKG): setup variables and replacements (AC_SUBST),
   prints started checks
 - EFL_LIB_END(PKG): prints ended checks

 - EFL_LIB_START_OPTIONAL(PKG, TEST): wraps EFL_LIB_START() with a
   conditional test. defines AC_DEFINE(HAVE_PKG).
 - EFL_LIB_END_OPTIONAL(PKG): wraps EFL_LIB_END() with a conditional
   test, defines AM_CONDITIONAL(HAVE_PKG).

SVN revision: 81903

11 years agoefl: pic-only if platform supports.
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 13:32:47 +0000 (13:32 +0000)]
efl: pic-only if platform supports.

in some cases libtool would build 2 versions, pic for shared and
no-pic for static. Make sure we just build one as pic is good enough.

NOTE: this is only used on supported platforms.

SVN revision: 81902

11 years agoefl: fix valgrind build.
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 13:30:13 +0000 (13:30 +0000)]
efl: fix valgrind build.

weird enough to build with memcheck.h you just need valgrind's CFLAGS,
not its libraries as they are not supposed to be used like that,
throwing many bgPlain_ errors (vgPlain_tl_pre_clo_init,
vgPlain_free...) from libcoregrind-x86-linux.a

SVN revision: 81901

11 years agoefl/libtool: disable-fast-install by default.
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 12:29:39 +0000 (12:29 +0000)]
efl/libtool: disable-fast-install by default.

From Autobook: http://www.sourceware.org/autobook/autobook/autobook_85.html

   libtool will build executables suitable for copying into their
   respective installation destinations, obviating the need for
   relinking them on those hosts which would have required
   it. Whenever libtool links an executable which uses shared
   libraries, it also creates a wrapper script which ensures that the
   environment is correct for loading the correct libraries, See
   section 10.5 Executing Uninstalled Binaries. On those hosts which
   require it, the wrapper script will also relink the executable in
   the build tree if you attempt to run it from there before
   installation.

   Sometimes this behaviour is not what you want, particularly if you
   are developing the package and not installing between test
   compilations. By passing `--disable-fast-install', the default
   behaviour is reversed; executables will be built so that they can
   be run from the build tree without relinking, but during
   installation they may be relinked.

The user may still override this default, depending on platform
support, by specifying --enable-fast-install to configure.

NOTE: In my measurements it made no difference in install time either.

SVN revision: 81900

11 years agoeo: let's make weak ref safer to manipulate.
Cedric BAIL [Sun, 30 Dec 2012 12:26:25 +0000 (12:26 +0000)]
eo: let's make weak ref safer to manipulate.

SVN revision: 81899

11 years agoefl/libtool: disable-static by default.
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 12:12:32 +0000 (12:12 +0000)]
efl/libtool: disable-static by default.

Most systems will never ever need the static builds of EFL, and it
doubles the compilation time (4m36s x 2m48s on my laptop). Then
disable it by default.

The user may still override this default by specifying --enable-static
to configure.

SVN revision: 81898

11 years agoefl/evas_cserve2: don't use libexec
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 11:42:04 +0000 (11:42 +0000)]
efl/evas_cserve2: don't use libexec

many distros deprecate libexec and it's better to keep our stuff
together inside /usr/lib/evas.

cserve2 binaries now lives in /usr/lib/evas/cserve2/bin

SVN revision: 81897

11 years agoefl/efreet: install d-bus service.
Gustavo Sverzut Barbieri [Sun, 30 Dec 2012 11:23:30 +0000 (11:23 +0000)]
efl/efreet: install d-bus service.

SVN revision: 81896

11 years agoefl: Fix efreet package config
Mike McCormack [Sun, 30 Dec 2012 01:32:59 +0000 (01:32 +0000)]
efl: Fix efreet package config

Signed-off-by: Mike McCormack <mikem@atratus.org>
SVN revision: 81893

11 years agoefl: Update ignore list
Mike McCormack [Sun, 30 Dec 2012 01:14:04 +0000 (01:14 +0000)]
efl: Update ignore list

Signed-off-by: Mike McCormack <mikem@atratus.org>
SVN revision: 81892

11 years agomove efreet.
Gustavo Sverzut Barbieri [Sat, 29 Dec 2012 23:06:03 +0000 (23:06 +0000)]
move efreet.

SVN revision: 81890

11 years agoefl: merge efreet.
Gustavo Sverzut Barbieri [Sat, 29 Dec 2012 23:04:40 +0000 (23:04 +0000)]
efl: merge efreet.

seems to be fine, pass distcheck and friends. please report.

changes:
 - documentation hierarchy fixes
 - replaced __UNUSED__ with EINA_UNUSED
 - replaced PKG_DATA_DIR with PACKAGE_DATA_DIR"/efreet"

SVN revision: 81889

11 years agoefl: tell compiler to not yell about missing field initializers
Lucas De Marchi [Sat, 29 Dec 2012 16:55:34 +0000 (16:55 +0000)]
efl: tell compiler to not yell about missing field initializers

SVN revision: 81884

11 years agomore pc breakings. fix.
Carsten Haitzler [Sat, 29 Dec 2012 16:43:07 +0000 (16:43 +0000)]
more pc breakings. fix.

SVN revision: 81882

11 years agofie fi fo fum... someone's been breaking the pc files there mon...
Carsten Haitzler [Sat, 29 Dec 2012 16:28:31 +0000 (16:28 +0000)]
fie fi fo fum... someone's been breaking the pc files there mon...

:)

SVN revision: 81881

11 years agoRELEASE THE HOUNDS!... edbus missing m4 macro to detect va args list
Carsten Haitzler [Sat, 29 Dec 2012 16:03:28 +0000 (16:03 +0000)]
RELEASE THE HOUNDS!... edbus missing m4 macro to detect va args list
type and that b0rxed edbus on 64bit. this fixes it. tnx to k-s for
pointing at it.

SVN revision: 81878

11 years agoefl/pkgconfig: we just support newer pkg-config, then no replacement needed.
Gustavo Sverzut Barbieri [Sat, 29 Dec 2012 15:02:34 +0000 (15:02 +0000)]
efl/pkgconfig: we just support newer pkg-config, then no replacement needed.

this @pkgconfig_requires_private@ is no longer defined.

SVN revision: 81874

11 years agoethumb_client: depend on edbus2 not old!
Gustavo Sverzut Barbieri [Sat, 29 Dec 2012 14:48:43 +0000 (14:48 +0000)]
ethumb_client: depend on edbus2 not old!

it was ported to use edbus2, but still saying in its pkg-config that
edbus v1 was required.

SVN revision: 81873

11 years agohow about we export symbols we intend to dlsym() ?
Carsten Haitzler [Sat, 29 Dec 2012 03:56:54 +0000 (03:56 +0000)]
how about we export symbols we intend to dlsym() ?

SVN revision: 81860

11 years agosmall change - use xdg runtime dir if available instead of home. nicer
Carsten Haitzler [Sat, 29 Dec 2012 03:39:20 +0000 (03:39 +0000)]
small change - use xdg runtime dir if available instead of home. nicer
in xdg worlds. still falls back tho.

SVN revision: 81858

11 years agoefl/docs: clean-up and make it more uniform.
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 23:26:05 +0000 (23:26 +0000)]
efl/docs: clean-up and make it more uniform.

now unified docs are bit more uniform in their start pages, overall
improved but much to do :-(

SVN revision: 81851

11 years agoedbus: do not crash when dispatching signals
Ulisses Furquim [Fri, 28 Dec 2012 21:05:57 +0000 (21:05 +0000)]
edbus: do not crash when dispatching signals

Make sure the next signal handler for the connection is always known and
not vanish under us.

Patch by: Ulisses Furquim <ulisses@profusion.mobi>

SVN revision: 81847

11 years agoefl/eio: fix docs.
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 20:47:25 +0000 (20:47 +0000)]
efl/eio: fix docs.

SVN revision: 81846

11 years agoefl/ecore_x: fix doxygen hierarchy.
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 20:46:54 +0000 (20:46 +0000)]
efl/ecore_x: fix doxygen hierarchy.

PLEASE someone unify xlib and xcb docs, makes no sense to have them
both as they should be exactly the same!

SVN revision: 81845

11 years agosame edbus commit as last commit
Mike Blumenkrantz [Fri, 28 Dec 2012 20:02:31 +0000 (20:02 +0000)]
same edbus commit as last commit

SVN revision: 81840

11 years agoefl/ecore_imf: fix doxygen hierarchy.
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 19:50:06 +0000 (19:50 +0000)]
efl/ecore_imf: fix doxygen hierarchy.

someone should move the docs to header, too much for me to do right now.

SVN revision: 81838

11 years agoefl/ecore_ipc: fix doxygen hierarchy.
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 19:49:35 +0000 (19:49 +0000)]
efl/ecore_ipc: fix doxygen hierarchy.

SVN revision: 81837

11 years agoefl/ecore_fb: fix doxygen hierarchy.
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 19:49:12 +0000 (19:49 +0000)]
efl/ecore_fb: fix doxygen hierarchy.

SVN revision: 81836

11 years agoefl/ecore_evas: fix doxygen hierarchy.
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 19:48:40 +0000 (19:48 +0000)]
efl/ecore_evas: fix doxygen hierarchy.

SVN revision: 81835

11 years agoefl/ecore_con: fix doxygen hierarchy.
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 19:48:12 +0000 (19:48 +0000)]
efl/ecore_con: fix doxygen hierarchy.

SVN revision: 81834

11 years agoefl/ecore_audio: fix doxygen hierarchy.
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 19:47:31 +0000 (19:47 +0000)]
efl/ecore_audio: fix doxygen hierarchy.

SVN revision: 81833

11 years agoefl/ecore_wayland: move docs to header.
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 19:36:01 +0000 (19:36 +0000)]
efl/ecore_wayland: move docs to header.

SVN revision: 81832

11 years agoefl/eina: fix doc for content access
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 19:08:42 +0000 (19:08 +0000)]
efl/eina: fix doc for content access

SVN revision: 81831

11 years agoefl/doc: add escape group.
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 18:53:32 +0000 (18:53 +0000)]
efl/doc: add escape group.

SVN revision: 81829

11 years agoefl/docs: fix Evil x Escape conflicts
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 18:42:57 +0000 (18:42 +0000)]
efl/docs: fix Evil x Escape conflicts

SVN revision: 81828

11 years agoefl/docs: fix evil x escape conflicts
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 18:42:35 +0000 (18:42 +0000)]
efl/docs: fix evil x escape conflicts

SVN revision: 81827

11 years agoedbus: moved to IN-EFL
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 18:02:58 +0000 (18:02 +0000)]
edbus: moved to IN-EFL

SVN revision: 81826

11 years agoefl: merge edbus (v2).
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 17:53:25 +0000 (17:53 +0000)]
efl: merge edbus (v2).

SVN revision: 81825

11 years agoefl/src/examples/eio: fixed typo.
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 15:59:12 +0000 (15:59 +0000)]
efl/src/examples/eio: fixed typo.

SVN revision: 81814

11 years agoefl/configure.ac: tweaks to ecore_audio.
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 15:24:09 +0000 (15:24 +0000)]
efl/configure.ac: tweaks to ecore_audio.

 - moved up, closer to wayland, so it's before ecore_evas (which is
   large and still messy)

 - pulseaudio and sndfile checks are strict

 - pulseaudio is enabled by default

 - sndfile is mandatory

SVN revision: 81812

11 years agolook for pkg confg prog.
Carsten Haitzler [Fri, 28 Dec 2012 14:39:21 +0000 (14:39 +0000)]
look for pkg confg prog.

SVN revision: 81803

11 years agoefl/configure.ac: s/want_pass_through/want_default_mempool/g
Gustavo Sverzut Barbieri [Fri, 28 Dec 2012 14:20:26 +0000 (14:20 +0000)]
efl/configure.ac: s/want_pass_through/want_default_mempool/g

what the hell pass_through has to do with enabling a default mempool I
have no idea, so make it closer to the config.h variable name.

SVN revision: 81802

11 years agoand re-roder pkg config checks.. and it works? weird.
Carsten Haitzler [Fri, 28 Dec 2012 13:36:06 +0000 (13:36 +0000)]
and re-roder pkg config checks.. and it works? weird.

SVN revision: 81800

11 years agothis pkg check for evi breaks eina pkg check... sutofoo literaly
Carsten Haitzler [Fri, 28 Dec 2012 13:23:52 +0000 (13:23 +0000)]
this pkg check for evi breaks eina pkg check... sutofoo literaly
decided pkg-config doesnt exist anymore. i dont know why. :(

SVN revision: 81799

11 years agoevas/evas_render: use rendering flag only when async rendering
Ulisses Furquim [Fri, 28 Dec 2012 13:00:37 +0000 (13:00 +0000)]
evas/evas_render: use rendering flag only when async rendering

Also postpone marking the rendering flag until we know we will have
the draw thread do its work. This way we avoid waiting forever at
evas_render_rendering_wait() when the draw thread is also blocked.

Patch by: Ulisses Furquim <ulisses@profusion.mobi>

SVN revision: 81798

11 years agoevas/image - return as possible as soon.
ChunEon Park [Fri, 28 Dec 2012 11:41:29 +0000 (11:41 +0000)]
evas/image - return as possible as soon.

SVN revision: 81794

11 years agoethumb: fix compilation on windows.
Cedric BAIL [Fri, 28 Dec 2012 07:30:33 +0000 (07:30 +0000)]
ethumb: fix compilation on windows.

Patch by Vincent Torri.

SVN revision: 81783

11 years agoevas: simplify logic for ellipsis.
Cedric BAIL [Fri, 28 Dec 2012 00:58:10 +0000 (00:58 +0000)]
evas: simplify logic for ellipsis.

SVN revision: 81773

11 years agoefl: Remove unused label
Mike McCormack [Thu, 27 Dec 2012 08:58:40 +0000 (08:58 +0000)]
efl: Remove unused label

Signed-off-by: Mike McCormack <mikem@atratus.org>
SVN revision: 81736

11 years agothis is small but critical - failure to connect isnt something to
Carsten Haitzler [Thu, 27 Dec 2012 08:16:05 +0000 (08:16 +0000)]
this is small but critical - failure to connect isnt something to
ERR() log about... it's simply a matter of the other end not being
there... it can be a perfectly normal condition.

SVN revision: 81734

11 years agoefl: when you remove option at least make the default sane or don't do it.
Cedric BAIL [Thu, 27 Dec 2012 06:46:29 +0000 (06:46 +0000)]
efl: when you remove option at least make the default sane or don't do it.

SVN revision: 81731

11 years agoxi2 leak--
Carsten Haitzler [Thu, 27 Dec 2012 05:26:14 +0000 (05:26 +0000)]
xi2 leak--

SVN revision: 81724

11 years agoSpec and build dependency fixes.
Michael Jennings [Wed, 26 Dec 2012 11:27:43 +0000 (11:27 +0000)]
Spec and build dependency fixes.

SVN revision: 81710

11 years agoBuild dependencies.
Michael Jennings [Wed, 26 Dec 2012 11:18:21 +0000 (11:18 +0000)]
Build dependencies.

SVN revision: 81709

11 years agoBuild dependencies.
Michael Jennings [Wed, 26 Dec 2012 10:58:04 +0000 (10:58 +0000)]
Build dependencies.

SVN revision: 81708

11 years agolibmount doesn't exist, so let's not depend on it, shall we?
Michael Jennings [Wed, 26 Dec 2012 10:21:17 +0000 (10:21 +0000)]
libmount doesn't exist, so let's not depend on it, shall we?

SVN revision: 81705

11 years agoSpec file fix.
Michael Jennings [Wed, 26 Dec 2012 10:08:24 +0000 (10:08 +0000)]
Spec file fix.

SVN revision: 81704

11 years agoThe OBS stuff is an utter catastrophe, so I'm trying to make this
Michael Jennings [Wed, 26 Dec 2012 08:55:47 +0000 (08:55 +0000)]
The OBS stuff is an utter catastrophe, so I'm trying to make this
thing work.  This builds for me on SL6.3; YMMV.  Problem reports
welcome.

SVN revision: 81702

11 years agoEo tutorial in Doxygen format.
Daniel Zaoui [Mon, 24 Dec 2012 12:55:14 +0000 (12:55 +0000)]
Eo tutorial in Doxygen format.

Signed-off-by: Daniel Zaoui <daniel.zaoui@samsung.com>
SVN revision: 81681

11 years agoeio functions no longer crash when passed NULL and throw errors accordingly
Mike Blumenkrantz [Mon, 24 Dec 2012 09:44:21 +0000 (09:44 +0000)]
eio functions no longer crash when passed NULL and throw errors accordingly

SVN revision: 81668

11 years agoall efl object deletion functions now take NULL without crashing or erroring
Mike Blumenkrantz [Mon, 24 Dec 2012 09:35:56 +0000 (09:35 +0000)]
all efl object deletion functions now take NULL without crashing or erroring

SVN revision: 81667

11 years agoeina_magic_fail now only ERRs on NULL instead of CRI, making debugging much easier
Mike Blumenkrantz [Mon, 24 Dec 2012 09:16:56 +0000 (09:16 +0000)]
eina_magic_fail now only ERRs on NULL instead of CRI, making debugging much easier

SVN revision: 81666

11 years agoeina: fix code indentation
Boris Faure [Sun, 23 Dec 2012 17:30:56 +0000 (17:30 +0000)]
eina: fix code indentation

SVN revision: 81660

11 years agofont draw - dont alloc font props for 32 chrs.. if we are only ever
Carsten Haitzler [Sun, 23 Dec 2012 11:02:50 +0000 (11:02 +0000)]
font draw - dont alloc font props for 32 chrs.. if we are only ever
going to have less than 32.. eg textgrid. 1 per prop.

SVN revision: 81654

11 years agofix crash in eio_monitor_del
Hannes Janetzek [Sat, 22 Dec 2012 01:56:10 +0000 (01:56 +0000)]
fix crash in eio_monitor_del

SVN revision: 81630

11 years agoefl/cserve2: Fix ref/unef of image entries for threads
Paulo Alcantara [Fri, 21 Dec 2012 21:13:06 +0000 (21:13 +0000)]
efl/cserve2: Fix ref/unef of image entries for threads

Signed-off-by: Paulo Alcantara <pcacjr@profusion.mobi>
SVN revision: 81584

11 years agoefl/cserve2: Fix some bugs regarding fonts
Paulo Alcantara [Fri, 21 Dec 2012 21:11:23 +0000 (21:11 +0000)]
efl/cserve2: Fix some bugs regarding fonts

Signed-off-by: Paulo Alcantara <pcacjr@profusion.mobi>
SVN revision: 81582

11 years agoefl/cserve2: Fix invalid iteration over client references
Paulo Alcantara [Fri, 21 Dec 2012 21:09:45 +0000 (21:09 +0000)]
efl/cserve2: Fix invalid iteration over client references

The _request_failed() function is called by error responses from slaves,
and iterating over references of a entry and removing each of them must
be done with EINA_LIST_FOREACH_SAFE(), since _entry_free_cb() calls
_entry_reference_del() which then removes the reference that is used in
the next iteration in for-loop from _request_failed().

Signed-off-by: Paulo Alcantara <pcacjr@profusion.mobi>
SVN revision: 81580

11 years agoAdd Simplified Chinese translation for efreet
Aron Xu [Fri, 21 Dec 2012 19:46:16 +0000 (19:46 +0000)]
Add Simplified Chinese translation for efreet

SVN revision: 81571

11 years agoAdd Simplified Chinese translation for efl
Aron Xu [Fri, 21 Dec 2012 19:44:51 +0000 (19:44 +0000)]
Add Simplified Chinese translation for efl

SVN revision: 81570

11 years agoevas/canvas: Make sure rendering finishes before image_data_set() and image_native_set()
Leandro Pereira [Fri, 21 Dec 2012 17:30:44 +0000 (17:30 +0000)]
evas/canvas: Make sure rendering finishes before image_data_set() and image_native_set()

SVN revision: 81563

11 years agoefl: Fix typo in evas_object_textblock
Tomas Cech [Fri, 21 Dec 2012 15:56:26 +0000 (15:56 +0000)]
efl: Fix typo in evas_object_textblock

Patch by: Tomas Cech <tcech@suse.cz>

SVN revision: 81559

11 years agoedje: ecore_imf_context_cursor_position_set don't need to be called when the object...
Jihoon Kim [Fri, 21 Dec 2012 11:39:36 +0000 (11:39 +0000)]
edje: ecore_imf_context_cursor_position_set don't need to be called when the object is moved

SVN revision: 81540

11 years agoefl: Fix signed comparison warning
Mike McCormack [Fri, 21 Dec 2012 09:01:29 +0000 (09:01 +0000)]
efl: Fix signed comparison warning

Signed-off-by: Mike McCormack <mikem@atratus.org>
SVN revision: 81522

11 years agoedbus: Fix make distcheck.
Stefan Schmidt [Fri, 21 Dec 2012 08:10:17 +0000 (08:10 +0000)]
edbus: Fix make distcheck.

SVN revision: 81515

11 years agoedbus codegen: rename tool and move it to the right dir
Lucas De Marchi [Thu, 20 Dec 2012 22:04:11 +0000 (22:04 +0000)]
edbus codegen: rename tool and move it to the right dir

SVN revision: 81496

11 years agoedbus codegen: fix check for eina + ecore
Lucas De Marchi [Thu, 20 Dec 2012 22:04:07 +0000 (22:04 +0000)]
edbus codegen: fix check for eina + ecore

This way we get a spurious line in configure, resulting in this message:

/home/lucas/p/edbus/configure: line 14196: ecore: command not found

SVN revision: 81495

11 years agoedbus: Mark instrospectable as dirty when needed
José Roberto de Souza [Thu, 20 Dec 2012 22:04:02 +0000 (22:04 +0000)]
edbus: Mark instrospectable as dirty when needed

Patch by: José Roberto de Souza  <zehortigoza@profusion.mobi>

SVN revision: 81494

11 years agoedbus: Fix edbus_proxy_property_set
José Roberto de Souza [Thu, 20 Dec 2012 21:48:22 +0000 (21:48 +0000)]
edbus: Fix edbus_proxy_property_set

Fix the function and add support for complex types, in which case a
Eina_Value is expected.

Patch by: José Roberto de Souza  <zehortigoza@profusion.mobi>

SVN revision: 81493

11 years agoedbus codegen: Initial commit
José Roberto de Souza [Thu, 20 Dec 2012 21:47:20 +0000 (21:47 +0000)]
edbus codegen: Initial commit

Add codegen tool to generate client code.

Patch by: José Roberto de Souza  <zehortigoza@profusion.mobi>

SVN revision: 81492

11 years agoefl/configure: add --with-tests=regular|coverage|none
Gustavo Sverzut Barbieri [Thu, 20 Dec 2012 21:43:53 +0000 (21:43 +0000)]
efl/configure: add --with-tests=regular|coverage|none

also make 'check' mandatory if enabled.

SVN revision: 81491

11 years agoefl/eet_suite: close file to force disk sync.
Gustavo Sverzut Barbieri [Thu, 20 Dec 2012 21:41:56 +0000 (21:41 +0000)]
efl/eet_suite: close file to force disk sync.

SVN revision: 81490

11 years agoedbus: add helper function edbus_message_iter_struct_like_to_eina_value()
José Roberto de Souza [Thu, 20 Dec 2012 21:38:15 +0000 (21:38 +0000)]
edbus: add helper function edbus_message_iter_struct_like_to_eina_value()

Patch by: José Roberto de Souza  <zehortigoza@profusion.mobi>

SVN revision: 81489