[EGIT] [apps/ephoto] master 01/01: Do not load non-image files in ephoto. Fix for https://phab.enlightenment.org/T802

2014-07-30 Thread Sanjeev BA
sanjeev pushed a commit to branch master.

http://git.enlightenment.org/apps/ephoto.git/commit/?id=9cae696fab61f42ab16d38bf7c95c5605b924a0d

commit 9cae696fab61f42ab16d38bf7c95c5605b924a0d
Author: Sanjeev BA 
Date:   Thu Jul 31 10:47:09 2014 +0900

Do not load non-image files in ephoto. Fix for 
https://phab.enlightenment.org/T802

Summary:
ephoto uses evas_common_extension_can_load_get() to determine whether a 
certain type of file should be displayed or not.
mp3, mp4, ogg etc can be loaded by evas.
There is already code in ephoto to enable "mime" type based loading of 
files - commented because efreet crashed in multi thread case.
We should enable that code and fix issues in efreet.

Reviewers: raster

Differential Revision: https://phab.enlightenment.org/D1257
---
 src/bin/ephoto.h | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/bin/ephoto.h b/src/bin/ephoto.h
index 04e5530..f4e8513 100644
--- a/src/bin/ephoto.h
+++ b/src/bin/ephoto.h
@@ -163,17 +163,17 @@ extern int __log_domain;
 static inline Eina_Bool
 _ephoto_eina_file_direct_info_image_useful(const Eina_File_Direct_Info *info)
 {
-   const char /* *type, */ *bname;
+   const char *type, *bname;
 
bname = info->path + info->name_start;
if (bname[0] == '.') return EINA_FALSE;
if ((info->type != EINA_FILE_REG) && (info->type != EINA_FILE_UNKNOWN))
  return EINA_FALSE;
 
-   return evas_object_image_extension_can_load_get(bname);
+   //return evas_object_image_extension_can_load_get(bname);
/* seems that this does not play nice with threads */
-   //if (!(type = efreet_mime_type_get(info->path))) return EINA_FALSE;
-   //return strncmp(type, "image/", sizeof("image/") - 1) == 0;
+   if (!(type = efreet_mime_type_get(info->path))) return EINA_FALSE;
+   return strncmp(type, "image/", sizeof("image/") - 1) == 0;
 }
 
 extern int EPHOTO_EVENT_ENTRY_CREATE;

-- 




[EGIT] [core/efl] master 01/01: ecore_evas_extn: fix wrong plug image display after connect

2014-07-30 Thread Thiep Ha
huchi pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=e3f68561b3f820cb27c93428ccd011355b03f370

commit e3f68561b3f820cb27c93428ccd011355b03f370
Author: Thiep Ha 
Date:   Thu Jul 31 05:28:42 2014 +0200

ecore_evas_extn: fix wrong plug image display after connect

Summary:
Plug image is displayed incorrect after connect to socket.

Test case: Run ecore_evas_extn_socket_example -> run 
ecore_evas_extn_plug_example -> click Change bg to change bg color.
Run 2nd ecore_evas_extn_plug_example. The plug area image of 2nd plug is 
incorrect display (different with 1st plug image).
Reason: When a plug connects to socket, socket sends incorrect buffer 
information.
Fix: Change buffer information.

@fix

Reviewers: Hermet, huchi

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D1232
---
 src/modules/ecore_evas/engines/extn/ecore_evas_extn.c | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/modules/ecore_evas/engines/extn/ecore_evas_extn.c 
b/src/modules/ecore_evas/engines/extn/ecore_evas_extn.c
index 2da2f02..8ce77aa 100644
--- a/src/modules/ecore_evas/engines/extn/ecore_evas_extn.c
+++ b/src/modules/ecore_evas/engines/extn/ecore_evas_extn.c
@@ -1503,7 +1503,7 @@ _ipc_client_add(void *data, int type EINA_UNUSED, void 
*event)
Extn *extn;
Ipc_Data_Resize ipc;
Ipc_Data_Update ipc2;
-   int i;
+   int i, prev_b;
 
if (ee != ecore_ipc_server_data_get(ecore_ipc_client_server_get(e->client)))
  return ECORE_CALLBACK_PASS_ON;
@@ -1536,8 +1536,10 @@ _ipc_client_add(void *data, int type EINA_UNUSED, void 
*event)
ipc2.x = 0; ipc2.y = 0; ipc2.w = ee->w; ipc2.h = ee->h;
ecore_ipc_client_send(e->client, MAJOR, OP_UPDATE, 0, 0, 0, &ipc2,
  sizeof(ipc2));
+   prev_b = extn->cur_b - 1;
+   if (prev_b < 0) prev_b = NBUF - 1;
ecore_ipc_client_send(e->client, MAJOR, OP_UPDATE_DONE, 0, 0,
- extn->cur_b, NULL, 0);
+ prev_b, NULL, 0);
_ecore_evas_extn_event(ee, ECORE_EVAS_EXTN_CLIENT_ADD);
return ECORE_CALLBACK_PASS_ON;
 }

-- 




[EGIT] [core/efl] master 01/01: autotools: Fix eolian_cxx tests.

2014-07-30 Thread Savio Sena
savio pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=1d271ed1bc5108c97716e2e00e53cb1018dc3635

commit 1d271ed1bc5108c97716e2e00e53cb1018dc3635
Author: Savio Sena 
Date:   Wed Jul 30 23:04:48 2014 -0300

autotools: Fix eolian_cxx tests.

Added callback.eo.c and callback.eo.h as dependencies to
eolian_cxx_test_callback.c and also added all generated files to CLEANFILES.
---
 src/Makefile_Eolian_Cxx.am | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/Makefile_Eolian_Cxx.am b/src/Makefile_Eolian_Cxx.am
index 677f937..c071371 100644
--- a/src/Makefile_Eolian_Cxx.am
+++ b/src/Makefile_Eolian_Cxx.am
@@ -68,7 +68,8 @@ tests/eolian_cxx/callback.c \
 tests/eolian_cxx/eolian_cxx_test_callback.cc \
 tests/eolian_cxx/eolian_cxx_test_generate.cc
 
-tests/eolian_cxx/tests_eolian_cxx_eolian_cxx_suite-eolian_cxx_test_callback.$(OBJEXT):
 tests/eolian_cxx/callback.eo.hh
+tests/eolian_cxx/tests_eolian_cxx_eolian_cxx_suite-eolian_cxx_test_callback.$(OBJEXT):
 tests/eolian_cxx/callback.eo.hh tests/eolian_cxx/callback.eo.c 
tests/eolian_cxx/callback.eo.h
+CLEANFILES += tests/eolian_cxx/callback.eo.hh tests/eolian_cxx/callback.eo.c 
tests/eolian_cxx/callback.eo.h
 
 tests_eolian_cxx_eolian_cxx_suite_CXXFLAGS =   \
 -I$(top_builddir)/src/lib/efl \

-- 




[EGIT] [core/efl] master 01/01: fix build dep problem with ecore-x

2014-07-30 Thread Carsten Haitzler
raster pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=b00e964ae65b807ea3964714809e3ed26dd4b587

commit b00e964ae65b807ea3964714809e3ed26dd4b587
Author: Carsten Haitzler (Rasterman) 
Date:   Thu Jul 31 10:47:05 2014 +0900

fix build dep problem with ecore-x
---
 src/Makefile_Ecore_X.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Makefile_Ecore_X.am b/src/Makefile_Ecore_X.am
index 901fa0d..190bde3 100644
--- a/src/Makefile_Ecore_X.am
+++ b/src/Makefile_Ecore_X.am
@@ -118,7 +118,7 @@ lib_ecore_x_libecore_x_la_CPPFLAGS += 
-I$(top_builddir)/src/lib/ecore_x/xcb
 endif
 
 lib_ecore_x_libecore_x_la_LIBADD = @ECORE_X_LIBS@ @USE_ECORE_CON_LIBS@
-lib_ecore_x_libecore_x_la_DEPENDENCIES = @ECORE_X_INTERNAL_LIBS@
+lib_ecore_x_libecore_x_la_DEPENDENCIES = @ECORE_X_INTERNAL_LIBS@ 
@USE_ECORE_CON_INTERNAL_LIBS@
 lib_ecore_x_libecore_x_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@
 
 if HAVE_ECORE_X_XCB

-- 




Re: [E-devel] [EGIT] [core/efl] master 02/02: Revert "tests/eolian_cxx: Add another generated file to BUILT_SOURCES"

2014-07-30 Thread Felipe Magno de Almeida
fyi, Savio is working on a fix.

On Wed, Jul 30, 2014 at 11:17 PM, Carsten Haitzler  wrote:
> On Wed, 30 Jul 2014 15:07:17 +0200 Stefan Schmidt 
> said:
>
>> Hello.
>>
>> On Wed, 2014-07-30 at 05:39, Carsten Haitzler wrote:
>> > raster pushed a commit to branch master.
>> >
>> > http://git.enlightenment.org/core/efl.git/commit/?id=4d8dcab8f0b15198370bac3a3adb59e9f97e55f4
>> >
>> > commit 4d8dcab8f0b15198370bac3a3adb59e9f97e55f4
>> > Author: Carsten Haitzler (Rasterman) 
>> > Date:   Wed Jul 30 21:33:25 2014 +0900
>> >
>> > Revert "tests/eolian_cxx: Add another generated file to BUILT_SOURCES"
>> >
>> > This reverts commit 577a6bfbba0a1cf19f394c66addf27b0332500d6.
>> >
>> > This brings efl back to building - it entirely stopped building for me
>> > with this change so even if this tried to fix something... it made
>> > just regular building of efl at all cease to work here which i'd say
>> > is bad (if this just fixes a dist problem - at least dist is broken,
>> > but regular build is not - we are in better shape).
>>
>> You are right. I had it building with this change yesterday but it
>> must have been in combination with another change as I just got
>> problems with this when starting fresh.
>>
>> I was a bit in a hurry with all this different fixes to get any
>> tarballs out (still not possible) and pushed this change to early.
>> Sorry.
>
> no problems - no need to apologize. you're trying to fix things. this is why 
> we
> have git. we can revert easily. it just got worse after this. back to before
> now at least
>
>
> --
> - Codito, ergo sum - "I code, therefore I am" --
> The Rasterman (Carsten Haitzler)ras...@rasterman.com
>
>
> --
> Infragistics Professional
> Build stunning WinForms apps today!
> Reboot your WinForms applications with our WinForms controls.
> Build a bridge from your legacy apps to the future.
> http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



-- 
Felipe Magno de Almeida

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[EGIT] [core/enlightenment] master 01/01: s/sumary/summary/g

2014-07-30 Thread Mike Blumenkrantz
discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=290e2369d38883846b6ac9f555ae078bc7b66868

commit 290e2369d38883846b6ac9f555ae078bc7b66868
Author: Mike Blumenkrantz 
Date:   Wed Jul 30 19:18:24 2014 -0400

s/sumary/summary/g
---
 src/bin/e_notification.c| 10 +-
 src/bin/e_notification.h|  2 +-
 src/modules/battery/e_mod_main.c|  2 +-
 src/modules/illume-indicator/e_mod_notify.c |  2 +-
 src/modules/mixer/e_mod_main.c  |  2 +-
 src/modules/notification/e_mod_main.c   |  2 +-
 src/modules/notification/e_mod_popup.c  |  2 +-
 7 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/src/bin/e_notification.c b/src/bin/e_notification.c
index bffd867..ededa2f 100644
--- a/src/bin/e_notification.c
+++ b/src/bin/e_notification.c
@@ -21,7 +21,7 @@ _notification_free(E_Notification_Notify *notify)
eina_stringshare_del(notify->icon.icon);
if (notify->icon.icon_path)
  eina_stringshare_del(notify->icon.icon_path);
-   eina_stringshare_del(notify->sumary);
+   eina_stringshare_del(notify->summary);
if (notify->icon.raw.data)
  free(notify->icon.raw.data);
free(notify);
@@ -82,7 +82,7 @@ notify_cb(const Eldbus_Service_Interface *iface EINA_UNUSED, 
const Eldbus_Messag
n = E_OBJECT_ALLOC(E_Notification_Notify, E_NOTIFICATION_TYPE, 
_notification_free);
n->urgency = E_NOTIFICATION_NOTIFY_URGENCY_NORMAL;
if (!eldbus_message_arguments_get(msg, "susssasa{sv}i", &n->app_name,
-&n->replaces_id, &n->icon.icon, &n->sumary,
+&n->replaces_id, &n->icon.icon, 
&n->summary,
 &n->body, &actions_iter, &hints_iter,
 &n->timeout))
  {
@@ -99,7 +99,7 @@ notify_cb(const Eldbus_Service_Interface *iface EINA_UNUSED, 
const Eldbus_Messag
eldbus_message_iter_dict_iterate(hints_iter, "sv", hints_dict_iter, n);
n->app_name = eina_stringshare_add(n->app_name);
n->icon.icon = eina_stringshare_add(n->icon.icon);
-   n->sumary = eina_stringshare_add(n->sumary);
+   n->summary = eina_stringshare_add(n->summary);
n->body = eina_stringshare_add(n->body);
 
e_object_ref(E_OBJECT(n));
@@ -321,7 +321,7 @@ notification_client_dbus_send(E_Notification_Notify 
*notify, E_Notification_Clie
 notify->app_name ? : "",
 notify->replaces_id,
 notify->icon.icon ? : "",
-notify->sumary ? : "",
+notify->summary ? : "",
 notify->body ? : "",
 &actions))
  goto error;
@@ -411,7 +411,7 @@ e_notification_client_send(E_Notification_Notify *notify, 
E_Notification_Client_
 
copy->app_name = eina_stringshare_add(notify->app_name);
copy->body = eina_stringshare_add(notify->body);
-   copy->sumary = eina_stringshare_add(notify->sumary);
+   copy->summary = eina_stringshare_add(notify->summary);
copy->icon.icon = eina_stringshare_add(notify->icon.icon);
if (notify->icon.icon_path)
  copy->icon.icon_path = eina_stringshare_add(notify->icon.icon_path);
diff --git a/src/bin/e_notification.h b/src/bin/e_notification.h
index b92a15d..e97ee00 100644
--- a/src/bin/e_notification.h
+++ b/src/bin/e_notification.h
@@ -26,7 +26,7 @@ typedef struct _E_Notification_Notify
unsigned int id;
const char *app_name;
unsigned replaces_id;
-   const char *sumary;
+   const char *summary;
const char *body;
int timeout;
E_Notification_Notify_Urgency urgency;
diff --git a/src/modules/battery/e_mod_main.c b/src/modules/battery/e_mod_main.c
index 1238795..7fe0a25 100644
--- a/src/modules/battery/e_mod_main.c
+++ b/src/modules/battery/e_mod_main.c
@@ -453,7 +453,7 @@ _battery_warning_popup(Instance *inst, int t, double 
percent)
 n.app_name = _("Battery");
 n.replaces_id = 0;
 n.icon.icon = "battery-low";
-n.sumary = _("Your battery is low!");
+n.summary = _("Your battery is low!");
 n.body = _("AC power is recommended.");
 n.timeout = battery_config->alert_timeout * 1000;
 e_notification_client_send(&n, _battery_warning_popup_cb, inst);
diff --git a/src/modules/illume-indicator/e_mod_notify.c 
b/src/modules/illume-indicator/e_mod_notify.c
index 048c7fd..a883307 100644
--- a/src/modules/illume-indicator/e_mod_notify.c
+++ b/src/modules/illume-indicator/e_mod_notify.c
@@ -152,7 +152,7 @@ _e_mod_notify_refresh(Ind_Notify_Win *nwin)
 edje_object_part_swallow(nwin->o_base, "e.swallow.icon", nwin->o_icon);
  }
 
-   edje_object_part_text_set(nwin->o_base, "e.text.title", 
nwin->notify->sumary);
+   edje_object_part_text_set(nwin->o_bas

Re: [E-devel] Trouble with latest E from Git+VirtualBox+LightDM

2014-07-30 Thread The Rasterman
On Wed, 30 Jul 2014 17:27:13 -0500 Jeff Hoogland  said:

> Built the latest EFL+ELM+E19 from GIT last night and I'm hitting a really
> specific road block.
> 
> On my virtualbox systems with LightDM I am unable to log into both E19 and
> E17.6. When I select them as the login session I simply get a hard locked X
> session. I've tried with my existing E configuration and no ~/.e folder.
> 
> When I switch to using startx or LXDM both desktops login as expected.
> 
> Any idea what changed recently that might cause this issue? My previous
> build was from the start of July and it works as expected with Virtual Box
> and LightDM.
> 
> LightDM with this latest E19 build logs in as expected on my intel laptop.
> 
> Ideas?

this comes to mind:

https://phab.enlightenment.org/w/debugging/

;]

> -- 
> ~Jeff Hoogland 
> Thoughts on Technology , Tech Blog
> Bodhi Linux , Enlightenment for your Desktop
> --
> Infragistics Professional
> Build stunning WinForms apps today!
> Reboot your WinForms applications with our WinForms controls. 
> Build a bridge from your legacy apps to the future.
> http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> 


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[EGIT] [core/enlightenment] master 01/01: unref composite submenu after setting

2014-07-30 Thread Mike Blumenkrantz
discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=4d9646b40e1c6c59d6bdf15495c23ddac4434720

commit 4d9646b40e1c6c59d6bdf15495c23ddac4434720
Author: Mike Blumenkrantz 
Date:   Wed Jul 30 18:37:38 2014 -0400

unref composite submenu after setting
---
 src/bin/e_int_client_menu.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/bin/e_int_client_menu.c b/src/bin/e_int_client_menu.c
index 4e15b2a..2a1eb45 100644
--- a/src/bin/e_int_client_menu.c
+++ b/src/bin/e_int_client_menu.c
@@ -209,6 +209,7 @@ e_int_client_menu_create(E_Client *ec)
 e_util_menu_item_theme_icon_set(mi, "preferences-composite");
 subm = e_menu_new();
 e_menu_item_submenu_set(mi, subm);
+e_object_unref(E_OBJECT(subm));
 e_object_data_set(E_OBJECT(subm), ec->comp);
 if (e_pixmap_type_get(ec->pixmap) == E_PIXMAP_TYPE_X)
   {

-- 




[EGIT] [core/enlightenment] master 01/01: enable Move to menu if current screen only has 1 desk but other screen exists

2014-07-30 Thread Mike Blumenkrantz
discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=cd610ef9eed584a27b0648d43a1be2433e1c18cd

commit cd610ef9eed584a27b0648d43a1be2433e1c18cd
Author: Mike Blumenkrantz 
Date:   Wed Jul 30 18:26:52 2014 -0400

enable Move to menu if current screen only has 1 desk but other screen 
exists
---
 src/bin/e_int_client_menu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_int_client_menu.c b/src/bin/e_int_client_menu.c
index 1071e1d..4e15b2a 100644
--- a/src/bin/e_int_client_menu.c
+++ b/src/bin/e_int_client_menu.c
@@ -137,7 +137,7 @@ e_int_client_menu_create(E_Client *ec)
mi = e_menu_item_new(m);
e_menu_item_separator_set(mi, 1);
 
-   if ((!ec->sticky) && ((ec->zone->desk_x_count > 1) || 
(ec->zone->desk_y_count > 1)))
+   if ((!ec->sticky) && ((eina_list_count(ec->comp->zones) > 1) || 
(ec->zone->desk_x_count > 1) || (ec->zone->desk_y_count > 1)))
  {
 mi = e_menu_item_new(m);
 e_menu_item_label_set(mi, _("Move to"));

-- 




[E-devel] Trouble with latest E from Git+VirtualBox+LightDM

2014-07-30 Thread Jeff Hoogland
Built the latest EFL+ELM+E19 from GIT last night and I'm hitting a really
specific road block.

On my virtualbox systems with LightDM I am unable to log into both E19 and
E17.6. When I select them as the login session I simply get a hard locked X
session. I've tried with my existing E configuration and no ~/.e folder.

When I switch to using startx or LXDM both desktops login as expected.

Any idea what changed recently that might cause this issue? My previous
build was from the start of July and it works as expected with Virtual Box
and LightDM.

LightDM with this latest E19 build logs in as expected on my intel laptop.

Ideas?
-- 
~Jeff Hoogland 
Thoughts on Technology , Tech Blog
Bodhi Linux , Enlightenment for your Desktop
--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[EGIT] [core/enlightenment] master 01/01: move unredirect client option to submenu

2014-07-30 Thread Mike Blumenkrantz
discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=231a81e812bac442ab63cbd2bc6f65b49089376e

commit 231a81e812bac442ab63cbd2bc6f65b49089376e
Author: Mike Blumenkrantz 
Date:   Wed Jul 30 18:21:31 2014 -0400

move unredirect client option to submenu
---
 src/bin/e_int_client_menu.c | 20 +++-
 1 file changed, 15 insertions(+), 5 deletions(-)

diff --git a/src/bin/e_int_client_menu.c b/src/bin/e_int_client_menu.c
index 6b218a9..1071e1d 100644
--- a/src/bin/e_int_client_menu.c
+++ b/src/bin/e_int_client_menu.c
@@ -201,13 +201,23 @@ e_int_client_menu_create(E_Client *ec)
   "e/widgets/border/default/borderless");
  }
 
-   if (e_comp_config_get()->enable_advanced_features && 
(e_pixmap_type_get(ec->pixmap) == E_PIXMAP_TYPE_X))
+   if (e_comp_config_get()->enable_advanced_features)
  {
+E_Menu *subm;
 mi = e_menu_item_new(m);
-e_menu_item_check_set(mi, 1);
-e_menu_item_label_set(mi, _("Unredirected"));
-e_menu_item_toggle_set(mi, !ec->redirected);
-e_menu_item_callback_set(mi, _e_client_menu_cb_redirect_set, ec);
+e_menu_item_label_set(mi, _("Composite"));
+e_util_menu_item_theme_icon_set(mi, "preferences-composite");
+subm = e_menu_new();
+e_menu_item_submenu_set(mi, subm);
+e_object_data_set(E_OBJECT(subm), ec->comp);
+if (e_pixmap_type_get(ec->pixmap) == E_PIXMAP_TYPE_X)
+  {
+ mi = e_menu_item_new(subm);
+ e_menu_item_check_set(mi, 1);
+ e_menu_item_label_set(mi, _("Unredirected"));
+ e_menu_item_toggle_set(mi, !ec->redirected);
+ e_menu_item_callback_set(mi, _e_client_menu_cb_redirect_set, ec);
+  }
  }
 
if (!ec->lock_close)

-- 




[EGIT] [core/enlightenment] master 01/02: add comp events for nocomp toggle

2014-07-30 Thread Mike Blumenkrantz
discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=858504c69f220238356b46c1ce192fa3164bf1e3

commit 858504c69f220238356b46c1ce192fa3164bf1e3
Author: Mike Blumenkrantz 
Date:   Wed Jul 30 14:23:17 2014 -0400

add comp events for nocomp toggle
---
 src/bin/e_comp.c | 6 ++
 src/bin/e_comp.h | 2 ++
 2 files changed, 8 insertions(+)

diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c
index cd31a42..63c1aa1 100644
--- a/src/bin/e_comp.c
+++ b/src/bin/e_comp.c
@@ -37,6 +37,8 @@ static double ecore_frametime = 0;
 static int _e_comp_log_dom = -1;
 
 EAPI int E_EVENT_COMPOSITOR_RESIZE = -1;
+EAPI int E_EVENT_COMPOSITOR_DISABLE = -1;
+EAPI int E_EVENT_COMPOSITOR_ENABLE = -1;
 
 //
 #undef DBG
@@ -248,6 +250,7 @@ _e_comp_cb_nocomp_begin(E_Comp *c)
DBG("JOB2...");
e_comp_render_queue(c);
e_comp_shape_queue_block(c, 1);
+   ecore_event_add(E_EVENT_COMPOSITOR_DISABLE, NULL, NULL, NULL);
 }
 
 static void
@@ -267,6 +270,7 @@ _e_comp_cb_nocomp_end(E_Comp *c)
  }
e_comp_render_queue(c);
e_comp_shape_queue_block(c, 0);
+   ecore_event_add(E_EVENT_COMPOSITOR_ENABLE, NULL, NULL, NULL);
 }
 
 static Eina_Bool
@@ -963,6 +967,8 @@ e_comp_init(void)
 
E_EVENT_COMPOSITOR_RESIZE = ecore_event_type_new();
E_EVENT_COMP_OBJECT_ADD = ecore_event_type_new();
+   E_EVENT_COMPOSITOR_DISABLE = ecore_event_type_new();
+   E_EVENT_COMPOSITOR_ENABLE = ecore_event_type_new();
 
ignores = eina_hash_pointer_new(NULL);
 
diff --git a/src/bin/e_comp.h b/src/bin/e_comp.h
index d01e441..48048fa 100644
--- a/src/bin/e_comp.h
+++ b/src/bin/e_comp.h
@@ -38,6 +38,8 @@ typedef enum _E_Layer
 
 # include "e_comp_cfdata.h"
 
+extern EAPI int E_EVENT_COMPOSITOR_DISABLE;
+extern EAPI int E_EVENT_COMPOSITOR_ENABLE;
 
 struct _E_Comp
 {

-- 




[EGIT] [core/enlightenment] master 02/02: make nocomp-skipable objects not require shelf

2014-07-30 Thread Mike Blumenkrantz
discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=11ec0ea86ba72d8c0ebd99d8fb72c01efe7e90c8

commit 11ec0ea86ba72d8c0ebd99d8fb72c01efe7e90c8
Author: Mike Blumenkrantz 
Date:   Wed Jul 30 14:23:25 2014 -0400

make nocomp-skipable objects not require shelf
---
 src/bin/e_comp.c  | 2 +-
 src/bin/e_shelf.c | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c
index 63c1aa1..d884f6c 100644
--- a/src/bin/e_comp.c
+++ b/src/bin/e_comp.c
@@ -140,7 +140,7 @@ _e_comp_visible_object_is(Evas_Object *obj, Evas_Coord x, 
Evas_Coord y, Evas_Coo
return 
_e_comp_visible_object_clip_is(o);
 }
   eina_list_free(children);
-  return !evas_object_data_get(o, 
"E_Shelf");
+  return !!evas_object_data_get(o, 
"comp_skip");
}
   }
 eina_list_free(children);
diff --git a/src/bin/e_shelf.c b/src/bin/e_shelf.c
index 3f4f6a0..c975b1a 100644
--- a/src/bin/e_shelf.c
+++ b/src/bin/e_shelf.c
@@ -232,6 +232,7 @@ e_shelf_zone_new(E_Zone *zone, const char *name, const char 
*style, E_Layer laye
  type = E_COMP_OBJECT_TYPE_NONE;
es->comp_object = e_comp_object_util_add(es->o_base, type);
evas_object_data_set(es->comp_object, "E_Shelf", es);
+   evas_object_data_set(es->comp_object, "comp_skip", (void*)1);
evas_object_name_set(es->comp_object, es->name);
evas_object_layer_set(es->comp_object, layer);
evas_object_lower(es->comp_object);

-- 




[EGIT] [core/enlightenment] master 01/02: unset phony exe on client deletion if exe still exists

2014-07-30 Thread Mike Blumenkrantz
discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=119dfb1bd8b34f8471135f9f79db2ab3108a71ca

commit 119dfb1bd8b34f8471135f9f79db2ab3108a71ca
Author: Mike Blumenkrantz 
Date:   Wed Jul 30 11:20:08 2014 -0400

unset phony exe on client deletion if exe still exists

fix T1460
---
 src/bin/e_comp_x.c | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c
index 2326722..3a71606 100644
--- a/src/bin/e_comp_x.c
+++ b/src/bin/e_comp_x.c
@@ -1305,7 +1305,11 @@ _e_comp_x_hide(void *data EINA_UNUSED, int type 
EINA_UNUSED, Ecore_X_Event_Windo
 hid = EINA_TRUE;
 evas_object_hide(ec->frame);
 if (!ec->internal)
-  e_object_del(E_OBJECT(ec));
+  {
+ if (ec->exe_inst && ec->exe_inst->exe)
+   ec->exe_inst->phony = 0;
+ e_object_del(E_OBJECT(ec));
+  }
  }
if (hid)
  _e_comp_x_focus_check(ec->comp);

-- 




[EGIT] [core/enlightenment] master 02/02: fix a series of oob reads in evry search matching

2014-07-30 Thread Mike Blumenkrantz
discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=3c5cc9c0a0ee532b32dda6faff57d8ccbf41982e

commit 3c5cc9c0a0ee532b32dda6faff57d8ccbf41982e
Author: Mike Blumenkrantz 
Date:   Wed Jul 30 11:57:32 2014 -0400

fix a series of oob reads in evry search matching
---
 src/modules/everything/evry_util.c | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/modules/everything/evry_util.c 
b/src/modules/everything/evry_util.c
index d973198..07d072d 100644
--- a/src/modules/everything/evry_util.c
+++ b/src/modules/everything/evry_util.c
@@ -68,6 +68,7 @@ evry_fuzzy_match(const char *str, const char *match)
unsigned int m_cnt = 0;
unsigned int m_min[MAX_WORDS];
unsigned int m_len = 0;
+   unsigned int s_len = 0;
 
if (!match || !str || !match[0] || !str[0])
  return 0;
@@ -87,6 +88,7 @@ evry_fuzzy_match(const char *str, const char *match)
  if (ip && ispunct(*m)) ip = 0;
 
m_len = strlen(match);
+   s_len = strlen(str);
 
/* with less than 3 chars match must be a prefix */
if (m_len < 3) m_len = 0;
@@ -180,7 +182,7 @@ evry_fuzzy_match(const char *str, const char *match)
{
   ii = 0;
   /* go to next match */
-  for (; (*m != 0) && !isspace(*m); m += ii)
+  for (; (m[0] && m[ii]) && !isspace(*m); m += ii)
 if (!eina_unicode_utf8_next_get(m, &ii)) break;
}
 
@@ -188,7 +190,7 @@ evry_fuzzy_match(const char *str, const char *match)
{
   ii = 0;
   /* test next match */
-  for (; (*m != 0) && isspace(*m); m += ii)
+  for (; (m[0] && m[ii]) && !isspace(*m); m += ii)
 if (!eina_unicode_utf8_next_get(m, &ii)) break;
   m_cnt++;
   break;
@@ -197,10 +199,10 @@ evry_fuzzy_match(const char *str, const char *match)
{
   ii = 0;
   /* go to next word */
-  for (; (*p != 0) && !((isspace(*p) || (ip && ispunct(*p; 
p += ii)
+  for (; (p[0] && (s_len - (p - str) >= ii)) && !((isspace(*p) 
|| (ip && ispunct(*p; p += ii)
 if (!eina_unicode_utf8_next_get(p, &ii)) break;
   ii = 0;
-  for (; (*p != 0) && ((isspace(*p) || (ip && ispunct(*p; 
p += ii)
+  for (; (p[0] && (s_len - (p - str) >= ii)) && ((isspace(*p) 
|| (ip && ispunct(*p; p += ii)
 if (!eina_unicode_utf8_next_get(p, &ii)) break;
   cnt++;
   next = p;

-- 




Re: [E-devel] rage video player not rendering video, but audio plays back!

2014-07-30 Thread Won guk Jeong
with env variable "GST_DEBUG=*:3", you could see gstreamer debug message on
console.

or why don't you try to play video by using gst-launch with playbin?

I mean for testing whether it's problem of gst or not to narrow down prob.
2014. 7. 30. 오후 4:56에 "Won guk Jeong" 님이 작성:

> with env variable "GST_DEBUG=*:3", you could see gstreamer debug message
> on console.
>
> or why don't you try to play video by using gst-launch with playbin?
> 2014. 7. 30. 오후 3:27에 "Cedric BAIL" 님이 작성:
>
>> On Jul 30, 2014 2:45 PM, "Carsten Haitzler"  wrote:
>> >
>> > On Wed, 30 Jul 2014 05:20:18 + Prathamesh P Ghanekar
>> >  said:
>> >
>> > > Hi,
>> > >
>> > > I have all these gstreamer packages on my Ubuntu13.10  host.
>> > >
>> > > prathamesh@ubuntu:~/rage/src/bin$ dpkg -l|grep gst
>> > > ii  bluez-gstreamer
>> > > 4.101-0ubuntu8b1   i386 Bluetooth
>> GStreamer
>> > > support ii  gir1.2-gst-plugins-base-1.0
>> > > 1.2.0-1ubuntu1 i386 Description:
>> GObject
>> > > introspection data for the GStreamer Plugins Base library ii
>> > > gir1.2-gstreamer-1.0
>> > > 1.2.0-1i386 Description:
>> GObject
>> > > introspection data for the GStreamer library ii
>> > > gstreamer0.10-alsa:i386
>> > > 0.10.36-1.1ubuntu1 i386 GStreamer
>> plugin for
>> > > ALSA ii  gstreamer0.10-ffmpeg:i386
>> > > 0.10.13-5  i386 FFmpeg plugin
>> for
>> > > GStreamer ii  gstreamer0.10-nice:i386
>> > > 0.1.4-1i386 ICE library
>> > > (GStreamer 0.10 plugin) ii  gstreamer0.10-plugins-base:i386
>> > > 0.10.36-1.1ubuntu1 i386 GStreamer
>> plugins
>> > > from the "base" set ii  gstreamer0.10-plugins-base-apps
>> > > 0.10.36-1.1ubuntu1 i386 GStreamer
>> helper
>> > > programs from the "base" set ii  gstreamer0.10-plugins-good:i386
>> > > 0.10.31-3+nmu1ubuntu3  i386 GStreamer
>> plugins
>> > > from the "good" set ii  gstreamer0.10-pulseaudio:i386
>> 0.10.31-3
>> > > +nmu1ubuntu3  i386 GStreamer plugin for
>> > > PulseAudio ii  gstreamer0.10-tools
>> > > 0.10.36-1.2ubuntu1 i386 Tools for use
>> with
>> > > GStreamer ii  gstreamer0.10-x:i386
>> > > 0.10.36-1.1ubuntu1 i386 GStreamer
>> plugins for
>> > > X11 and Pango ii  gstreamer1.0-alsa:i386
>> > > 1.2.0-1ubuntu1 i386 GStreamer
>> plugin for
>> > > ALSA ii  gstreamer1.0-clutter
>> > > 2.0.8-1i386 Clutter PLugin
>> for
>> > > GStreamer 1.0 ii  gstreamer1.0-libav:i386
>> > > 1.0.10-1ubuntu1i386 FFmpeg plugin
>> for
>> > > GStreamer ii  gstreamer1.0-nice:i386
>> > > 0.1.4-1i386 ICE library
>> > > (GStreamer plugin) ii  gstreamer1.0-plugins-bad:i386
>> > > 1.2.0-3ubuntu5 i386 GStreamer
>> plugins
>> > > from the "bad" set ii  gstreamer1.0-plugins-base:i386
>> > > 1.2.0-1ubuntu1 i386 GStreamer
>> plugins
>> > > from the "base" set ii  gstreamer1.0-plugins-base-apps
>> > > 1.2.0-1ubuntu1 i386 GStreamer
>> helper
>> > > programs from the "base" set ii  gstreamer1.0-plugins-good:i386
>> > > 1.2.0-1ubuntu1 i386 GStreamer
>> plugins
>> > > from the "good" set ii  gstreamer1.0-plugins-ugly:i386
>> > > 1.2.0-1i386 GStreamer
>> plugins
>> > > from the "ugly" set ii  gstreamer1.0-pulseaudio:i386
>> > > 1.2.0-1ubuntu1 i386 GStreamer
>> plugin for
>> > > PulseAudio ii  gstreamer1.0-tools
>> > > 1.2.0-1i386 Tools for use
>> with
>> > > GStreamer ii  gstreamer1.0-x:i386
>> > > 1.2.0-1ubuntu1 i386 GStreamer
>> plugins for
>> > > X11 and Pango ii  libclutter-gst-2.0-0:i386
>> > > 2.0.8-1i386 Open GL based
>> > > interactive canvas library GStreamer elements ii
>> > > libgstreamer-plugins-bad1.0-0:i386
>> > > 1.2.0-3ubuntu5 i386 GStreamer
>> development
>> > > files for libraries from the "bad" set ii
>> > > libgstreamer-plugins-base0.10-0:i386
>> > > 0.10.36-1.1ubuntu1 i386 GStreamer
>> libraries
>> > > from the "base" set ii  libgstreamer-plugins-base1.0-0:i386
>> > > 1.2.0-1ubuntu1 i386 GStreamer
>> libraries
>> > > from the "base" set ii  libgstreamer-plugins-base1.0-dev
>> > > 1.2.0-1ubuntu1 i386 GStreamer
>> development
>> > > files for libraries from the "base" set ii
>> > > libgstreamer-p

Re: [E-devel] rage video player not rendering video, but audio plays back!

2014-07-30 Thread Won guk Jeong
with env variable "GST_DEBUG=*:3", you could see gstreamer debug message on
console.

or why don't you try to play video by using gst-launch with playbin?
2014. 7. 30. 오후 3:27에 "Cedric BAIL" 님이 작성:

> On Jul 30, 2014 2:45 PM, "Carsten Haitzler"  wrote:
> >
> > On Wed, 30 Jul 2014 05:20:18 + Prathamesh P Ghanekar
> >  said:
> >
> > > Hi,
> > >
> > > I have all these gstreamer packages on my Ubuntu13.10  host.
> > >
> > > prathamesh@ubuntu:~/rage/src/bin$ dpkg -l|grep gst
> > > ii  bluez-gstreamer
> > > 4.101-0ubuntu8b1   i386 Bluetooth
> GStreamer
> > > support ii  gir1.2-gst-plugins-base-1.0
> > > 1.2.0-1ubuntu1 i386 Description:
> GObject
> > > introspection data for the GStreamer Plugins Base library ii
> > > gir1.2-gstreamer-1.0
> > > 1.2.0-1i386 Description:
> GObject
> > > introspection data for the GStreamer library ii
> > > gstreamer0.10-alsa:i386
> > > 0.10.36-1.1ubuntu1 i386 GStreamer
> plugin for
> > > ALSA ii  gstreamer0.10-ffmpeg:i386
> > > 0.10.13-5  i386 FFmpeg plugin
> for
> > > GStreamer ii  gstreamer0.10-nice:i386
> > > 0.1.4-1i386 ICE library
> > > (GStreamer 0.10 plugin) ii  gstreamer0.10-plugins-base:i386
> > > 0.10.36-1.1ubuntu1 i386 GStreamer
> plugins
> > > from the "base" set ii  gstreamer0.10-plugins-base-apps
> > > 0.10.36-1.1ubuntu1 i386 GStreamer
> helper
> > > programs from the "base" set ii  gstreamer0.10-plugins-good:i386
> > > 0.10.31-3+nmu1ubuntu3  i386 GStreamer
> plugins
> > > from the "good" set ii  gstreamer0.10-pulseaudio:i386
> 0.10.31-3
> > > +nmu1ubuntu3  i386 GStreamer plugin for
> > > PulseAudio ii  gstreamer0.10-tools
> > > 0.10.36-1.2ubuntu1 i386 Tools for use
> with
> > > GStreamer ii  gstreamer0.10-x:i386
> > > 0.10.36-1.1ubuntu1 i386 GStreamer
> plugins for
> > > X11 and Pango ii  gstreamer1.0-alsa:i386
> > > 1.2.0-1ubuntu1 i386 GStreamer
> plugin for
> > > ALSA ii  gstreamer1.0-clutter
> > > 2.0.8-1i386 Clutter PLugin
> for
> > > GStreamer 1.0 ii  gstreamer1.0-libav:i386
> > > 1.0.10-1ubuntu1i386 FFmpeg plugin
> for
> > > GStreamer ii  gstreamer1.0-nice:i386
> > > 0.1.4-1i386 ICE library
> > > (GStreamer plugin) ii  gstreamer1.0-plugins-bad:i386
> > > 1.2.0-3ubuntu5 i386 GStreamer
> plugins
> > > from the "bad" set ii  gstreamer1.0-plugins-base:i386
> > > 1.2.0-1ubuntu1 i386 GStreamer
> plugins
> > > from the "base" set ii  gstreamer1.0-plugins-base-apps
> > > 1.2.0-1ubuntu1 i386 GStreamer
> helper
> > > programs from the "base" set ii  gstreamer1.0-plugins-good:i386
> > > 1.2.0-1ubuntu1 i386 GStreamer
> plugins
> > > from the "good" set ii  gstreamer1.0-plugins-ugly:i386
> > > 1.2.0-1i386 GStreamer
> plugins
> > > from the "ugly" set ii  gstreamer1.0-pulseaudio:i386
> > > 1.2.0-1ubuntu1 i386 GStreamer
> plugin for
> > > PulseAudio ii  gstreamer1.0-tools
> > > 1.2.0-1i386 Tools for use
> with
> > > GStreamer ii  gstreamer1.0-x:i386
> > > 1.2.0-1ubuntu1 i386 GStreamer
> plugins for
> > > X11 and Pango ii  libclutter-gst-2.0-0:i386
> > > 2.0.8-1i386 Open GL based
> > > interactive canvas library GStreamer elements ii
> > > libgstreamer-plugins-bad1.0-0:i386
> > > 1.2.0-3ubuntu5 i386 GStreamer
> development
> > > files for libraries from the "bad" set ii
> > > libgstreamer-plugins-base0.10-0:i386
> > > 0.10.36-1.1ubuntu1 i386 GStreamer
> libraries
> > > from the "base" set ii  libgstreamer-plugins-base1.0-0:i386
> > > 1.2.0-1ubuntu1 i386 GStreamer
> libraries
> > > from the "base" set ii  libgstreamer-plugins-base1.0-dev
> > > 1.2.0-1ubuntu1 i386 GStreamer
> development
> > > files for libraries from the "base" set ii
> > > libgstreamer-plugins-good1.0-0:i386
> > > 1.2.0-1ubuntu1 i386 GStreamer
> development
> > > files for libraries from the "good" set ii
> > > libgstreamer0.10-0:i386
> > > 0.10.36-1.2ubuntu1 i386 Core GStreamer
> > > libraries and elements ii  libgstreamer1.0-0:i386
> > > 1.2.0-1i386 Core 

Re: [E-devel] [EGIT] [core/efl] master 02/02: Revert "tests/eolian_cxx: Add another generated file to BUILT_SOURCES"

2014-07-30 Thread The Rasterman
On Wed, 30 Jul 2014 15:07:17 +0200 Stefan Schmidt 
said:

> Hello.
> 
> On Wed, 2014-07-30 at 05:39, Carsten Haitzler wrote:
> > raster pushed a commit to branch master.
> > 
> > http://git.enlightenment.org/core/efl.git/commit/?id=4d8dcab8f0b15198370bac3a3adb59e9f97e55f4
> > 
> > commit 4d8dcab8f0b15198370bac3a3adb59e9f97e55f4
> > Author: Carsten Haitzler (Rasterman) 
> > Date:   Wed Jul 30 21:33:25 2014 +0900
> > 
> > Revert "tests/eolian_cxx: Add another generated file to BUILT_SOURCES"
> > 
> > This reverts commit 577a6bfbba0a1cf19f394c66addf27b0332500d6.
> > 
> > This brings efl back to building - it entirely stopped building for me
> > with this change so even if this tried to fix something... it made
> > just regular building of efl at all cease to work here which i'd say
> > is bad (if this just fixes a dist problem - at least dist is broken,
> > but regular build is not - we are in better shape).
> 
> You are right. I had it building with this change yesterday but it
> must have been in combination with another change as I just got
> problems with this when starting fresh.
> 
> I was a bit in a hurry with all this different fixes to get any
> tarballs out (still not possible) and pushed this change to early.
> Sorry.

no problems - no need to apologize. you're trying to fix things. this is why we
have git. we can revert easily. it just got worse after this. back to before
now at least


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[EGIT] [apps/terminology] master 01/01: Don't undef gettext, it breaks the build when it's disabled

2014-07-30 Thread Iván Briano
sachiel pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=0a8e42276c544a6aa159647e982c4e5077259116

commit 0a8e42276c544a6aa159647e982c4e5077259116
Author: Iván Briano 
Date:   Wed Jul 30 11:00:35 2014 -0300

Don't undef gettext, it breaks the build when it's disabled

Somewhere along the line, libintl.h is included whether or not
--disable-nls was passed to configure, and undefining gettext makes the
macros in that header make no sense.
---
 src/bin/private.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/bin/private.h b/src/bin/private.h
index fb94b90..720326a 100644
--- a/src/bin/private.h
+++ b/src/bin/private.h
@@ -9,8 +9,6 @@
 #define _(string) gettext (string)
 #else
 #define _(string) (string)
-#undef gettext
-#define gettext(string) (string)
 #endif
 #define gettext_noop(String) String
 

-- 




Re: [E-devel] rage video player not rendering video, but audio plays back!

2014-07-30 Thread Cedric BAIL
On Jul 30, 2014 2:45 PM, "Carsten Haitzler"  wrote:
>
> On Wed, 30 Jul 2014 05:20:18 + Prathamesh P Ghanekar
>  said:
>
> > Hi,
> >
> > I have all these gstreamer packages on my Ubuntu13.10  host.
> >
> > prathamesh@ubuntu:~/rage/src/bin$ dpkg -l|grep gst
> > ii  bluez-gstreamer
> > 4.101-0ubuntu8b1   i386 Bluetooth
GStreamer
> > support ii  gir1.2-gst-plugins-base-1.0
> > 1.2.0-1ubuntu1 i386 Description:
GObject
> > introspection data for the GStreamer Plugins Base library ii
> > gir1.2-gstreamer-1.0
> > 1.2.0-1i386 Description:
GObject
> > introspection data for the GStreamer library ii
> > gstreamer0.10-alsa:i386
> > 0.10.36-1.1ubuntu1 i386 GStreamer
plugin for
> > ALSA ii  gstreamer0.10-ffmpeg:i386
> > 0.10.13-5  i386 FFmpeg plugin
for
> > GStreamer ii  gstreamer0.10-nice:i386
> > 0.1.4-1i386 ICE library
> > (GStreamer 0.10 plugin) ii  gstreamer0.10-plugins-base:i386
> > 0.10.36-1.1ubuntu1 i386 GStreamer
plugins
> > from the "base" set ii  gstreamer0.10-plugins-base-apps
> > 0.10.36-1.1ubuntu1 i386 GStreamer helper
> > programs from the "base" set ii  gstreamer0.10-plugins-good:i386
> > 0.10.31-3+nmu1ubuntu3  i386 GStreamer
plugins
> > from the "good" set ii  gstreamer0.10-pulseaudio:i386
0.10.31-3
> > +nmu1ubuntu3  i386 GStreamer plugin for
> > PulseAudio ii  gstreamer0.10-tools
> > 0.10.36-1.2ubuntu1 i386 Tools for use
with
> > GStreamer ii  gstreamer0.10-x:i386
> > 0.10.36-1.1ubuntu1 i386 GStreamer
plugins for
> > X11 and Pango ii  gstreamer1.0-alsa:i386
> > 1.2.0-1ubuntu1 i386 GStreamer
plugin for
> > ALSA ii  gstreamer1.0-clutter
> > 2.0.8-1i386 Clutter PLugin
for
> > GStreamer 1.0 ii  gstreamer1.0-libav:i386
> > 1.0.10-1ubuntu1i386 FFmpeg plugin
for
> > GStreamer ii  gstreamer1.0-nice:i386
> > 0.1.4-1i386 ICE library
> > (GStreamer plugin) ii  gstreamer1.0-plugins-bad:i386
> > 1.2.0-3ubuntu5 i386 GStreamer
plugins
> > from the "bad" set ii  gstreamer1.0-plugins-base:i386
> > 1.2.0-1ubuntu1 i386 GStreamer
plugins
> > from the "base" set ii  gstreamer1.0-plugins-base-apps
> > 1.2.0-1ubuntu1 i386 GStreamer helper
> > programs from the "base" set ii  gstreamer1.0-plugins-good:i386
> > 1.2.0-1ubuntu1 i386 GStreamer
plugins
> > from the "good" set ii  gstreamer1.0-plugins-ugly:i386
> > 1.2.0-1i386 GStreamer
plugins
> > from the "ugly" set ii  gstreamer1.0-pulseaudio:i386
> > 1.2.0-1ubuntu1 i386 GStreamer
plugin for
> > PulseAudio ii  gstreamer1.0-tools
> > 1.2.0-1i386 Tools for use
with
> > GStreamer ii  gstreamer1.0-x:i386
> > 1.2.0-1ubuntu1 i386 GStreamer
plugins for
> > X11 and Pango ii  libclutter-gst-2.0-0:i386
> > 2.0.8-1i386 Open GL based
> > interactive canvas library GStreamer elements ii
> > libgstreamer-plugins-bad1.0-0:i386
> > 1.2.0-3ubuntu5 i386 GStreamer
development
> > files for libraries from the "bad" set ii
> > libgstreamer-plugins-base0.10-0:i386
> > 0.10.36-1.1ubuntu1 i386 GStreamer
libraries
> > from the "base" set ii  libgstreamer-plugins-base1.0-0:i386
> > 1.2.0-1ubuntu1 i386 GStreamer
libraries
> > from the "base" set ii  libgstreamer-plugins-base1.0-dev
> > 1.2.0-1ubuntu1 i386 GStreamer
development
> > files for libraries from the "base" set ii
> > libgstreamer-plugins-good1.0-0:i386
> > 1.2.0-1ubuntu1 i386 GStreamer
development
> > files for libraries from the "good" set ii
> > libgstreamer0.10-0:i386
> > 0.10.36-1.2ubuntu1 i386 Core GStreamer
> > libraries and elements ii  libgstreamer1.0-0:i386
> > 1.2.0-1i386 Core GStreamer
> > libraries and elements ii  libgstreamer1.0-dev
> > 1.2.0-1i386 GStreamer core
> > development files
> >
> > Can you figure out anything from this list?
>
> nope - you seem to have plugins. i don't know. it works flawlessly on
arch.
> plays almost every video i throw at it. the video decoding is in gst's
hands
> though. emotion just asks it to and gets b

Re: [E-devel] [EGIT] [core/efl] master 02/02: Revert "tests/eolian_cxx: Add another generated file to BUILT_SOURCES"

2014-07-30 Thread Stefan Schmidt
Hello.

On Wed, 2014-07-30 at 05:39, Carsten Haitzler wrote:
> raster pushed a commit to branch master.
> 
> http://git.enlightenment.org/core/efl.git/commit/?id=4d8dcab8f0b15198370bac3a3adb59e9f97e55f4
> 
> commit 4d8dcab8f0b15198370bac3a3adb59e9f97e55f4
> Author: Carsten Haitzler (Rasterman) 
> Date:   Wed Jul 30 21:33:25 2014 +0900
> 
> Revert "tests/eolian_cxx: Add another generated file to BUILT_SOURCES"
> 
> This reverts commit 577a6bfbba0a1cf19f394c66addf27b0332500d6.
> 
> This brings efl back to building - it entirely stopped building for me
> with this change so even if this tried to fix something... it made
> just regular building of efl at all cease to work here which i'd say
> is bad (if this just fixes a dist problem - at least dist is broken,
> but regular build is not - we are in better shape).

You are right. I had it building with this change yesterday but it
must have been in combination with another change as I just got
problems with this when starting fresh.

I was a bit in a hurry with all this different fixes to get any
tarballs out (still not possible) and pushed this change to early.
Sorry.

regards
Stefan Schmidt

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[EGIT] [core/efl] master 01/02: evas - gl-x11 - extensions - be more specific about video_sync extn

2014-07-30 Thread Carsten Haitzler
raster pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=beb7e6e61144c611c5d007fa2bbff653f77029a6

commit beb7e6e61144c611c5d007fa2bbff653f77029a6
Author: Carsten Haitzler (Rasterman) 
Date:   Wed Jul 30 16:16:45 2014 +0900

evas - gl-x11 - extensions - be more specific about video_sync extn

this should avoid false-positive detection for this extension - other
extensions share string content
---
 src/modules/evas/engines/gl_x11/evas_engine.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/modules/evas/engines/gl_x11/evas_engine.c 
b/src/modules/evas/engines/gl_x11/evas_engine.c
index 9fd05fd..a5567dc 100644
--- a/src/modules/evas/engines/gl_x11/evas_engine.c
+++ b/src/modules/evas/engines/gl_x11/evas_engine.c
@@ -774,7 +774,7 @@ gl_extn_veto(Render_Engine *re)
  glsym_glXBindTexImage = NULL;
  glsym_glXReleaseTexImage = NULL;
   }
-if (!strstr(str, "_video_sync"))
+if (!strstr(str, "GLX_SGI_video_sync"))
   {
  glsym_glXGetVideoSync = NULL;
  glsym_glXWaitVideoSync = NULL;

-- 




[EGIT] [core/efl] master 02/02: Revert "tests/eolian_cxx: Add another generated file to BUILT_SOURCES"

2014-07-30 Thread Carsten Haitzler
raster pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=4d8dcab8f0b15198370bac3a3adb59e9f97e55f4

commit 4d8dcab8f0b15198370bac3a3adb59e9f97e55f4
Author: Carsten Haitzler (Rasterman) 
Date:   Wed Jul 30 21:33:25 2014 +0900

Revert "tests/eolian_cxx: Add another generated file to BUILT_SOURCES"

This reverts commit 577a6bfbba0a1cf19f394c66addf27b0332500d6.

This brings efl back to building - it entirely stopped building for me
with this change so even if this tried to fix something... it made
just regular building of efl at all cease to work here which i'd say
is bad (if this just fixes a dist problem - at least dist is broken,
but regular build is not - we are in better shape).
---
 src/Makefile_Eolian_Cxx.am | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/Makefile_Eolian_Cxx.am b/src/Makefile_Eolian_Cxx.am
index 77beceb..677f937 100644
--- a/src/Makefile_Eolian_Cxx.am
+++ b/src/Makefile_Eolian_Cxx.am
@@ -56,8 +56,7 @@ if EFL_ENABLE_TESTS
 
 BUILT_SOURCES += \
tests/eolian_cxx/callback.eo.c \
-   tests/eolian_cxx/callback.eo.h \
-   tests/eolian_cxx/callback.eo.hh
+   tests/eolian_cxx/callback.eo.h
 
 check_PROGRAMS += tests/eolian_cxx/eolian_cxx_suite
 TESTS += tests/eolian_cxx/eolian_cxx_suite

-- 




[EGIT] [core/efl] master 01/01: eolian: fix: remove unused function

2014-07-30 Thread Daniel Kolesa
q66 pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=444b62c51cae61cad09701d3a5e79421172b15bf

commit 444b62c51cae61cad09701d3a5e79421172b15bf
Author: Daniel Kolesa 
Date:   Wed Jul 30 13:33:52 2014 +0100

eolian: fix: remove unused function
---
 src/lib/eolian/database_print.c | 17 -
 1 file changed, 17 deletions(-)

diff --git a/src/lib/eolian/database_print.c b/src/lib/eolian/database_print.c
index afbee3c..f96cdc2 100644
--- a/src/lib/eolian/database_print.c
+++ b/src/lib/eolian/database_print.c
@@ -248,23 +248,6 @@ _class_print(const Eolian_Class *cl)
 }
 
 EAPI Eina_Bool
-eolian_show(const Eolian_Class *class)
-{
-   if (!class)
- {
-Eina_List *itr;
-Eolian_Class *cl;
-EINA_LIST_FOREACH(_classes, itr, cl)
-  _class_print(cl);
- }
-   else
- {
-_class_print(class);
- }
-   return EINA_TRUE;
-}
-
-EAPI Eina_Bool
 eolian_show_class(const Eolian_Class *class)
 {
if (!class)

-- 




[EGIT] [tools/enventor] master 01/01: code refactoring.

2014-07-30 Thread ChunEon Park
hermet pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=e592d650535008eb4cb6567a9641dde8e74e8c3d

commit e592d650535008eb4cb6567a9641dde8e74e8c3d
Author: ChunEon Park 
Date:   Wed Jul 30 18:08:57 2014 +0900

code refactoring.

split setting.c out from the menu.
---
 src/bin/Makefile.am |   1 +
 src/bin/main.c  |   2 +-
 src/bin/menu.c  | 447 +---
 src/bin/setting.c   | 401 +++
 src/include/Makefile.am |   1 +
 src/include/common.h|   1 +
 src/include/menu.h  |   4 +-
 src/include/setting.h   |   3 +
 8 files changed, 450 insertions(+), 410 deletions(-)

diff --git a/src/bin/Makefile.am b/src/bin/Makefile.am
index eebc94d..46ccbe7 100644
--- a/src/bin/Makefile.am
+++ b/src/bin/Makefile.am
@@ -31,6 +31,7 @@ enventor_SOURCES = \
goto.c \
newfile.c \
auto_comp.c \
+   setting.c \
globals.c
 
 enventor_LDADD = @ENVENTOR_LIBS@
diff --git a/src/bin/main.c b/src/bin/main.c
index 308bc63..e76d8b6 100644
--- a/src/bin/main.c
+++ b/src/bin/main.c
@@ -215,7 +215,7 @@ main_key_down_cb(void *data, int type EINA_UNUSED, void *ev)
 return ECORE_CALLBACK_DONE;
  }
 
-   if (menu_open_depth() > 0) return ECORE_CALLBACK_PASS_ON;
+   if (menu_activated_get() > 0) return ECORE_CALLBACK_PASS_ON;
 
//Control Key
if (!strcmp("Control_L", event->key))
diff --git a/src/bin/menu.c b/src/bin/menu.c
index 948fab2..efcd19c 100644
--- a/src/bin/menu.c
+++ b/src/bin/menu.c
@@ -5,28 +5,15 @@ struct menu_s
 {
Evas_Object *menu_layout;
Evas_Object *newfile_layout;
-   Evas_Object *setting_layout;
Evas_Object *warning_layout;
Evas_Object *fileselector_layout;
Evas_Object *about_layout;
-   Evas_Object *img_path_entry;
-   Evas_Object *snd_path_entry;
-   Evas_Object *fnt_path_entry;
-   Evas_Object *data_path_entry;
-   Evas_Object *slider_font;
-   Evas_Object *slider_view;
-   Evas_Object *toggle_tools;
-   Evas_Object *toggle_stats;
-   Evas_Object *toggle_linenum;
-   Evas_Object *toggle_highlight;
-   Evas_Object *toggle_swallow;
-   Evas_Object *toggle_indent;
-   Evas_Object *toggle_autocomp;
+
Evas_Object *ctxpopup;
 
const char *last_accessed_path;
 
-   int open_depth;
+   int active_request;
 
edit_data *ed;
 };
@@ -65,13 +52,6 @@ about_close()
 }
 
 static void
-setting_close()
-{
-   menu_data *md = g_md;
-   elm_object_signal_emit(md->setting_layout, "elm,state,dismiss", "");
-}
-
-static void
 warning_close()
 {
menu_data *md = g_md;
@@ -94,11 +74,7 @@ newfile_dismiss_done(void *data, Evas_Object *obj 
EINA_UNUSED,
menu_data *md = data;
evas_object_del(md->newfile_layout);
md->newfile_layout = NULL;
-   md->open_depth--;
-   if (md->open_depth == 0) edit_focus_set(md->ed);
-   if (!md->menu_layout) return;
-   elm_object_disabled_set(md->menu_layout, EINA_FALSE);
-   elm_object_focus_set(md->menu_layout, EINA_TRUE);
+   menu_deactivate_request();
 }
 
 static void
@@ -109,26 +85,7 @@ fileselector_dismiss_done(void *data, Evas_Object *obj 
EINA_UNUSED,
menu_data *md = data;
evas_object_del(md->fileselector_layout);
md->fileselector_layout = NULL;
-   md->open_depth--;
-   if (md->open_depth == 0) edit_focus_set(md->ed);
-   if (!md->menu_layout) return;
-   elm_object_disabled_set(md->menu_layout, EINA_FALSE);
-   elm_object_focus_set(md->menu_layout, EINA_TRUE);
-}
-
-static void
-setting_dismiss_done(void *data, Evas_Object *obj EINA_UNUSED,
- const char *emission EINA_UNUSED,
- const char *source EINA_UNUSED)
-{
-   menu_data *md = data;
-   evas_object_del(md->setting_layout);
-   md->setting_layout = NULL;
-   md->open_depth--;
-   if (md->open_depth == 0) edit_focus_set(md->ed);
-   if (!md->menu_layout) return;
-   elm_object_disabled_set(md->menu_layout, EINA_FALSE);
-   elm_object_focus_set(md->menu_layout, EINA_TRUE);
+   menu_deactivate_request();
 }
 
 static void
@@ -139,11 +96,7 @@ about_dismiss_done(void *data, Evas_Object *obj EINA_UNUSED,
menu_data *md = data;
evas_object_del(md->about_layout);
md->about_layout = NULL;
-   md->open_depth--;
-   if (md->open_depth == 0) edit_focus_set(md->ed);
-   if (!md->menu_layout) return;
-   elm_object_disabled_set(md->menu_layout, EINA_FALSE);
-   elm_object_focus_set(md->menu_layout, EINA_TRUE);
+   menu_deactivate_request();
 }
 
 static void
@@ -154,8 +107,7 @@ menu_dismiss_done(void *data, Evas_Object *obj EINA_UNUSED,
menu_data *md = data;
evas_object_del(md->menu_layout);
md->menu_layout = NULL;
-   md->open_depth--;
-   if (md->open_depth == 0) edit_focus_set(md->ed);
+   menu_deactivate_request();
 }
 
 static void
@@ -166,11 +118,7 @@ warning_dismiss_done(void *data, Evas_Object *obj 
EINA_UNUSED,
menu_data *md = data;
evas_object_del(md->warning_layout);
md->warning_layout = NULL;
-   md->open_depth--;
-

[EGIT] [core/efl] master 01/01: tests/eolian_cxx: Add another generated file to BUILT_SOURCES

2014-07-30 Thread Stefan Schmidt
stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=577a6bfbba0a1cf19f394c66addf27b0332500d6

commit 577a6bfbba0a1cf19f394c66addf27b0332500d6
Author: Stefan Schmidt 
Date:   Wed Jul 30 10:53:15 2014 +0200

tests/eolian_cxx: Add another generated file to BUILT_SOURCES

If not put into BUILT_SOURCES it will not be added to CLEANFILES
and thus staying around as uncleaned file which make distcheck
complain about it.
---
 src/Makefile_Eolian_Cxx.am | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/Makefile_Eolian_Cxx.am b/src/Makefile_Eolian_Cxx.am
index 677f937..77beceb 100644
--- a/src/Makefile_Eolian_Cxx.am
+++ b/src/Makefile_Eolian_Cxx.am
@@ -56,7 +56,8 @@ if EFL_ENABLE_TESTS
 
 BUILT_SOURCES += \
tests/eolian_cxx/callback.eo.c \
-   tests/eolian_cxx/callback.eo.h
+   tests/eolian_cxx/callback.eo.h \
+   tests/eolian_cxx/callback.eo.hh
 
 check_PROGRAMS += tests/eolian_cxx/eolian_cxx_suite
 TESTS += tests/eolian_cxx/eolian_cxx_suite

-- 




[EGIT] [tools/enventor] master 01/01: refactoring code.

2014-07-30 Thread ChunEon Park
hermet pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=cbfe14c87ce690569039543ff7729fcf5ea18f87

commit cbfe14c87ce690569039543ff7729fcf5ea18f87
Author: ChunEon Park 
Date:   Wed Jul 30 17:02:08 2014 +0900

refactoring code.

renamed the edc file, group names to be more clear.
---
 data/themes/default/Makefile.am|   4 +-
 data/themes/default/enventor.edc   |   4 +-
 data/themes/default/images/Makefile.am |   2 +-
 .../images/{menu_layout.png => frame_bg.png}   | Bin
 data/themes/default/layout.edc | 677 
 .../themes/default/{menu.edc => layout_common.edc} | 897 +
 data/themes/default/layout_setting.edc | 497 
 src/bin/goto.c |   2 +-
 src/bin/search.c   |   2 +-
 9 files changed, 1044 insertions(+), 1041 deletions(-)

diff --git a/data/themes/default/Makefile.am b/data/themes/default/Makefile.am
index b039dab..b205f2f 100644
--- a/data/themes/default/Makefile.am
+++ b/data/themes/default/Makefile.am
@@ -11,8 +11,8 @@ files_DATA = enventor.edj
 EXTRA_DIST = enventor.edc \
  content.edc \
  images.edc \
- layout.edc \
- menu.edc \
+ layout_common.edc \
+ layout_setting.edc \
  theme_ext.edc
 
 enventor.edj: Makefile $(EXTRA_DIST)
diff --git a/data/themes/default/enventor.edc b/data/themes/default/enventor.edc
index b522e04..09e2853 100644
--- a/data/themes/default/enventor.edc
+++ b/data/themes/default/enventor.edc
@@ -6,6 +6,6 @@ collections {
#include "content.edc"
#include "images.edc"
#include "theme_ext.edc"
-   #include "layout.edc"
-   #include "menu.edc"
+   #include "layout_common.edc"
+   #include "layout_setting.edc"
 }
diff --git a/data/themes/default/images/Makefile.am 
b/data/themes/default/images/Makefile.am
index 7988609..474bb67 100644
--- a/data/themes/default/images/Makefile.am
+++ b/data/themes/default/images/Makefile.am
@@ -21,7 +21,7 @@ EXTRA_DIST = \
holes_vert.png \
inset_shadow.png \
logo.png \
-   menu_layout.png \
+   frame_bg.png \
minus.png \
part_highlight.png \
plus.png \
diff --git a/data/themes/default/images/menu_layout.png 
b/data/themes/default/images/frame_bg.png
similarity index 100%
rename from data/themes/default/images/menu_layout.png
rename to data/themes/default/images/frame_bg.png
diff --git a/data/themes/default/layout.edc b/data/themes/default/layout.edc
deleted file mode 100644
index 1427867..000
--- a/data/themes/default/layout.edc
+++ /dev/null
@@ -1,677 +0,0 @@
-styles {
- style { name: "entry_statusbar_style";
-base: "font="FN" font_size=11 text_class=entry color=#ff 
style=shadow,bottom shadow_color=#0080 glow_color=#3399ff18 valign=1 
ellipsis=1.0 wrap=none";
- }
-}
-group { name: "goto";
-   parts {
-  part { name: "base";
- type: SPACER;
- scale: 1;
- description { state: "default" 0.0;
-min: 300 67;
- }
-  }
-  part { name: "left_top_padding";
- type: SPACER;
- scale: 1;
- description { state: "default" 0.0;
-rel1.relative: 0 0;
-rel2.relative: 0 0;
-fixed: 1 1;
-align: 0 0;
-min: 5 5;
- }
-  }
-  part { name: "elm.text.goto";
- type: TEXT;
- scale: 1;
- effect: SHADOW BOTTOM;
- description { state: "default" 0.0;
-align: 0 0;
-rel1.to: "left_top_padding";
-rel2.to: "left_top_padding";
-rel1.relative: 1 1;
-rel2.relative: 1 1;
-text {
-   font: FN;
-   size: 11;
-   align: 0 0;
-}
-color: 255 255 255 255;
-color3: 0 0 0 128;
-min: 180 20;
-fixed: 1 1;
- }
-  }
-  part { name: "elm.swallow.entry";
- type: SWALLOW;
- scale: 1;
- description { state: "default" 0.0;
-rel1.relative: 1 0;
-rel2.relative: 1 1;
-rel1.to: "elm.text.goto";
-rel2.to_y: "elm.text.goto";
-rel2.offset: -5 -1;
-fixed: 1 1;
- }
-  }
-  part { name: "elm.text.msg";
- type: TEXT;
- scale: 1;
- effect: GLOW;
- description { state: "default" 0.0;
-align: 0 0;
-rel1.to: "elm.text.goto";
-rel2.to: "elm.text.goto";
-rel1.relative: 0 1;
-rel2.relative: 0 1;
-rel1.offset: 0 10;
-text {
-   font: FN;
-   size: 10;
-   align: 0 0.5;
-}
-color: 51 153 255 255;
-color2: 51 153 255 16;
-color3: 51 153 255 8;
-min: 180 

[EGIT] [core/efl] master 01/01: build: Clean Makevar now that we generate one on our own

2014-07-30 Thread Stefan Schmidt
stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=089bd6f9b30f147c2fe66d103e939c6ceff6ea61

commit 089bd6f9b30f147c2fe66d103e939c6ceff6ea61
Author: Stefan Schmidt 
Date:   Wed Jul 30 09:19:53 2014 +0200

build: Clean Makevar now that we generate one on our own

Since we generate our own Makevar for the po subdir we also need to clean
it up. If not distcheck complains about uncleaned files.
---
 Makefile.am | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Makefile.am b/Makefile.am
index 01cb01d..d47c105 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -425,3 +425,4 @@ pkgbuild::
 
 clean-local:
rm -rf benchmark coverage
+   rm -f po/Makevars

--