summaryrefslogtreecommitdiff
path: root/src/bin
Commit message (Collapse)AuthorAgeFilesLines
* Evas cserve2: Remove useless var when calculating size of sun_path.Tom Hacohen2013-03-212-3/+2
| | | | I have no idea how I missed these 2.
* Evas cserve2: Remove useless var when calculating size of sun_path.Tom Hacohen2013-03-212-4/+2
|
* embryo_cc: Fix possible buffer overflow in setconfig()Daniel Willmann2013-03-181-1/+2
| | | | | | Need to account for the space of the trailing '/' as well. Signed-off-by: Daniel Willmann <d.willmann@samsung.com>
* edje: i am lazy, i like to not care about case.Cedric BAIL2013-03-181-1/+1
|
* edje: fix edje_watch compilation on Windows.Cedric Bail2013-03-161-3/+9
|
* edje: fix epp compilation on Windows.Cedric Bail2013-03-162-1/+9
|
* efreet: avoid symbol collision.Cedric Bail2013-03-161-5/+5
|
* efl: Fixes to support compiling with CFLAGS=-WerrorHenrique Dante de Almeida2013-02-261-17/+17
| | | | | This allows compiling with gcc 4.7.2 without errors (using the default configuration).
* evas: Fix PSD image loadingHenrique Dante de Almeida2013-02-261-1/+1
|
* evas: Fix buffer overflows on environment variablesHenrique Dante de Almeida2013-02-264-4/+4
|
* Fix possible memory leak.Christopher Michael2013-02-191-0/+2
| | | | | | | | Dynamic memory stored in 'ptr2' allocated through function 'malloc' at line 653 can be lost at line 1022. Also there is one similar error on line 1029. Signed-off-by: Christopher Michael <cp.michael@samsung.com>
* Edje pick: Fixed lockwork suspected leaks.Tom Hacohen2013-02-181-0/+14
| | | | | The problem is that apparently size can be 0 but some data can still be returned.
* More removal of \rIvan Briano2013-02-171-1376/+1376
|
* small change to something never used/tested much ... cserve2 - FAIL ifCarsten Haitzler2013-02-131-4/+13
| | | | | | | | an existing cserve 2 client is there. SVN revision: 83866
* efl/edbus: Make sure to compare EOF against an int from fgetc.Stefan Schmidt2013-02-111-2/+2
| | | | | | | Fgetc() return an int to clearly detect EOF. If you want to read more about it: http://stackoverflow.com/questions/11057259/fgetc-checking-eof SVN revision: 83829
* efl/ethumb: Fix more memory leaks in ethumbd_slave.cStefan Schmidt2013-02-111-4/+18
| | | | | | MAke sure we free strdup'ed memory when hittign an error case. SVN revision: 83818
* efl/ethumb: Fix memory leak on error path in ethumb_slave.Stefan Schmidt2013-02-111-3/+15
| | | | | | | When we hit an error with _ec_pipe_str_read we should clean up the strdup from previous calls to avoid leaks in the error case. SVN revision: 83817
* efl: Fix shadow warningMike McCormack2013-01-251-20/+20
| | | | | | Signed-off-by: Mike McCormack <mike@atratus.org> SVN revision: 83335
* some clang warning cleanups i forgot to commitGustavo Sverzut Barbieri2013-01-212-2/+2
| | | | SVN revision: 83024
* fix bug spotted by clangGustavo Sverzut Barbieri2013-01-201-1/+1
| | | | SVN revision: 83016
* fix evas_cserve2 utils linkage and includes.Gustavo Sverzut Barbieri2013-01-181-1/+1
| | | | | | | | | | | they are basic eina apps, not evas (use EINA_CFLAGS), they just use evas_cs2.h for types and enums. they also must link with eina. SVN revision: 82995
* fix directory structure: move ethumd_client out of ethumb.Gustavo Sverzut Barbieri2013-01-154-4/+6
| | | | | | | | | it's another library, do not mix stuff as it used to be. SVN revision: 82835
* embryo: remove simple -Wshadow errors. Dangerous/uncertain left.Gustavo Sverzut Barbieri2013-01-135-127/+127
| | | | | | | | | | | | | | | | | | | | | | | The follow are left: {{{ bin/embryo/embryo_cc_sc1.c: In function ‘dowhile’: bin/embryo/embryo_cc_sc1.c:3524:24: warning: declaration of ‘wq’ shadows a global declaration [-Wshadow] bin/embryo/embryo_cc_sc1.c:115:21: warning: shadowed declaration is here [-Wshadow] bin/embryo/embryo_cc_sc1.c: In function ‘dodo’: bin/embryo/embryo_cc_sc1.c:3546:24: warning: declaration of ‘wq’ shadows a global declaration [-Wshadow] bin/embryo/embryo_cc_sc1.c:115:21: warning: shadowed declaration is here [-Wshadow] bin/embryo/embryo_cc_sc1.c: In function ‘dofor’: bin/embryo/embryo_cc_sc1.c:3565:24: warning: declaration of ‘wq’ shadows a global declaration [-Wshadow] bin/embryo/embryo_cc_sc1.c:115:21: warning: shadowed declaration is here [-Wshadow] }}} looking at their code, they say to alloc a local "wq", but then they call functions such as delwhile() that changes the global... VERY suspicious!! SVN revision: 82734
* merge ethumb.Gustavo Sverzut Barbieri2013-01-125-0/+3225
| | | | | | | | | | | | | | | | | | | | This one was a painful bitch. The edbus2 port was quite broken, mainly leaking eina_stringshare and also not adding the '\0' to the strings that are represented as bytearray (paths cannot be utf8 to avoid translations). Emotion plugin was also quite bogus and the video thumbnail as edje (animated) is not working yet due bug in Edje_Edit api -- someone needs to investigate this, seems strange. Emotion plugin also had a bug that it was deleting the object from inside object callback. Now it seems to work. Please report if it does not. SVN revision: 82675
* efl: Avoid shadow warnings (signal -> sig)Mike McCormack2013-01-112-30/+30
| | | | | | Signed-off-by: Mike McCormack <mikem@atratus.org> SVN revision: 82669
* efl: Fix unused variable warningMike McCormack2013-01-111-0/+2
| | | | | | Signed-off-by: Mike McCormack <mikem@atratus.org> SVN revision: 82668
* efl: eet may do the error on close, where it tries to actually write stuff.Gustavo Sverzut Barbieri2013-01-111-1/+7
| | | | SVN revision: 82609
* efl: fix out-of-tree build of examples.Gustavo Sverzut Barbieri2013-01-112-2/+2
| | | | | | | | | | edje and embryo include files are in source dir, not build. codegen example must have dependency to build in correct order :-/ SVN revision: 82605
* efl: remove checks for socket.h, net/*, arpa/*Lucas De Marchi2013-01-101-4/+1
| | | | SVN revision: 82585
* efl: remove checks for sys/select.h, sys/time.h and sys/resource.hLucas De Marchi2013-01-101-3/+1
| | | | SVN revision: 82584
* efl: Remove check for unistd.hLucas De Marchi2013-01-104-16/+4
| | | | | | | | * unistd.h: is very useful, very old and very standard. SVN revision: 82577
* efl/evas: move cserve2 binaries under MODULE_ARCH dirLucas De Marchi2013-01-091-1/+1
| | | | SVN revision: 82491
* efl/efreet: move efreet_{icon,desktop}_cache_create under MODULE_ARCHLucas De Marchi2013-01-091-2/+4
| | | | | | | | | | | These binaries are called by efreetd and should be under MODULE_ARCH dir. And actually fix the path to efreet_desktop_cache_create that was wrong. SVN revision: 82489
* efl/edje: move epp under MODULE_ARCHLucas De Marchi2013-01-091-1/+1
| | | | | | | | epp is invoked by edje_cc and should include the MODULE_ARCH dir. SVN revision: 82488
* efl/edje: remove alloca as it's in eina now.Gustavo Sverzut Barbieri2013-01-072-34/+0
| | | | SVN revision: 82372
* efl: easy warning fixes.Gustavo Sverzut Barbieri2013-01-052-3/+3
| | | | SVN revision: 82277
* efl/evas_cserve2: use eina_prefixGustavo Sverzut Barbieri2013-01-044-3/+27
| | | | SVN revision: 82220
* efl/efreet: use eina_prefix, kill one TODO item.Gustavo Sverzut Barbieri2013-01-042-5/+22
| | | | SVN revision: 82219
* edje edje_cc_handlers.c: Better error message. Now it's kind.Daniel Juyung Seo2013-01-041-2/+2
| | | | SVN revision: 82154
* efl edje_cc_handlers.c: Ported r82093 from edje to efl/edje.Daniel Juyung Seo2013-01-041-0/+7
| | | | SVN revision: 82150
* efl: merge edje.Gustavo Sverzut Barbieri2013-01-0431-1/+32851
| | | | | | | | | | | | | | | | | | | this is still in progress, mostly the multisense stuff is pending. it seems that when we merge ecore_audio in edje the libremix and similar are gone, at least from Edje, and will be in ecore_audio itself (or pulseaudio). Changes: * __UNUSED__ to EINA_UNUSED * binaries (epp, embryo_cc, edje_cc) now consider EFL_RUN_IN_TREE and will assume the binaries are still not installed, running from build tree location (needs more testing, maybe doesn't work with srcdir != builddir, still doesn't solve cross compile builds) SVN revision: 82139
* efl: merge eeze.Gustavo Sverzut Barbieri2013-01-037-0/+1193
| | | | | | | | | | | | Changes also in this commit: * fix missing EAPI in symbols used by modules * removed old libudev and libmount support as agreed by discomfitor/zmike * replaced __UNUSED__ with EINA_UNUSED * fixed docs hierarchy SVN revision: 82100
* efl: eina_alloca.h to simplify alloca() usage.Gustavo Sverzut Barbieri2013-01-031-2/+0
| | | | | | | | | having to replicate 18 lines per file just to access alloca() is insane. Let's do that in Eina.h and avoid that crap :-/ SVN revision: 82082
* edbus codegen: Surpress unused parameters warningsJosé Roberto de Souza2013-01-031-8/+8
| | | | | | | | Patch by: José Roberto de Souza <zehortigoza@profusion.mobi> SVN revision: 82075
* edbus codegen: Properly handle autoclosed tagsJosé Roberto de Souza2013-01-031-50/+59
| | | | | | | | Patch by: José Roberto de Souza <zehortigoza@profusion.mobi> SVN revision: 82074
* edbus codegen: OptimizationsJosé Roberto de Souza2013-01-032-7/+6
| | | | | | | | | | | Use eina_strbuf_string_steal() instead of strdup() + eina_strbuf_string_get(). Patch by: José Roberto de Souza <zehortigoza@profusion.mobi> SVN revision: 82073
* efl/evas_cserve2: don't use libexecGustavo Sverzut Barbieri2012-12-301-1/+1
| | | | | | | | | | | 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
* efl: merge efreet.Gustavo Sverzut Barbieri2012-12-298-0/+2488
| | | | | | | | | | | | | 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
* efl: merge edbus (v2).Gustavo Sverzut Barbieri2012-12-286-0/+1611
| | | | SVN revision: 81825
* efl/cserve2: Fix some bugs regarding fontsPaulo Alcantara2012-12-211-4/+4
| | | | | | | Signed-off-by: Paulo Alcantara <pcacjr@profusion.mobi> SVN revision: 81582