You are not logged in.

#1 2014-01-18 19:45:47

Linoman
Member
From: Barcelona, Spain
Registered: 2010-12-04
Posts: 40

[SOLVED] AUR's enlightenment-git installation problem

Hello

I was attempting to install enlightenment-git from AUR, but I get an error during efl-git. I made a system update before, so I had the latest base-devel tools. Any thoughts?

  CC       modules/ecore_evas/engines/wayland/modules_ecore_evas_engines_wayland_module_la-ecore_evas_wayland_common.lo
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c: In function '_ecore_evas_wl_common_cb_window_configure':
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:309:20: error: 'fw' undeclared (first use in this function)
              nw -= fw;
                    ^
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:309:20: note: each undeclared identifier is reported only once for each function it appears in
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:310:20: error: 'fh' undeclared (first use in this function)
              nh -= fh;
                    ^
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:191:24: warning: variable 'prev_full' set but not used [-Wunused-but-set-variable]
    Eina_Bool prev_max, prev_full;
                        ^
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:191:14: warning: variable 'prev_max' set but not used [-Wunused-but-set-variable]
    Eina_Bool prev_max, prev_full;
              ^
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:190:20: warning: variable 'orig_h' set but not used [-Wunused-but-set-variable]
    int orig_w = 0, orig_h = 0;
                    ^
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:190:8: warning: variable 'orig_w' set but not used [-Wunused-but-set-variable]
    int orig_w = 0, orig_h = 0;
        ^
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c: At top level:
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:319:4: error: expected identifier or '(' before 'if'
    if (prev_full != ee->prop.fullscreen)
    ^
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:322:4: error: expected identifier or '(' before 'if'
    if (ee->prop.fullscreen)
    ^
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:333:4: error: expected identifier or '(' before 'if'
    if ((ee->x != ev->x) || (ee->y != ev->y))
    ^
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:336:4: error: expected identifier or '(' before 'if'
    if ((ee->req.w != orig_w) || (ee->req.h != orig_h))
    ^
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:339:4: error: expected identifier or '(' before 'if'
    if ((prev_max != ee->prop.maximized) ||
    ^
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:343:4: error: expected identifier or '(' before 'return'
    return ECORE_CALLBACK_PASS_ON;
    ^
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:344:1: error: expected identifier or '(' before '}' token
 }
 ^
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:1526:1: warning: '_ecore_evas_wayland_resize_edge_set' defined but not used [-Wunused-function]
 _ecore_evas_wayland_resize_edge_set(Ecore_Evas *ee, int edge)
 ^
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c: In function '_ecore_evas_wl_common_cb_window_configure':
modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c:317:6: warning: control reaches end of non-void function [-Wreturn-type]
      }
      ^
Makefile:20441: recipe for target 'modules/ecore_evas/engines/wayland/modules_ecore_evas_engines_wayland_module_la-ecore_evas_wayland_common.lo' failed
make[4]: *** [modules/ecore_evas/engines/wayland/modules_ecore_evas_engines_wayland_module_la-ecore_evas_wayland_common.lo] Error 1
Makefile:25586: recipe for target 'all-recursive' failed
make[3]: *** [all-recursive] Error 1
Makefile:9090: recipe for target 'all' failed
make[2]: *** [all] Error 2
Makefile:1728: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
Makefile:1230: recipe for target 'all' failed
make: *** [all] Error 2

Last edited by Linoman (2014-01-20 09:22:00)

Offline

#2 2014-01-18 19:48:56

89c51
Member
Registered: 2012-06-05
Posts: 741

Re: [SOLVED] AUR's enlightenment-git installation problem

I get the same. Probably related to the latest commits from ChunEon Park. Nothing you can do until a dev with git access fixes it.

Offline

#3 2014-01-18 21:09:48

VCoolio
Member
From: Netherlands
Registered: 2010-01-05
Posts: 120

Re: [SOLVED] AUR's enlightenment-git installation problem

Assuming you don't need wayland, you could try and comment/delete those lines in PKGBUILD:

    --enable-wayland-clients \
    --enable-wayland-egl

Offline

#4 2014-01-18 22:07:06

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,426
Website

Re: [SOLVED] AUR's enlightenment-git installation problem

Moving to AUR issues...


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#5 2014-01-20 02:33:22

Scimmia
Fellow
Registered: 2012-09-01
Posts: 13,729

Re: [SOLVED] AUR's enlightenment-git installation problem

Should be fixed now. Build breaks happen and are usually fixed very quickly, this one took longer because it happened on a weekend.

Offline

#6 2014-01-20 09:20:25

Linoman
Member
From: Barcelona, Spain
Registered: 2010-12-04
Posts: 40

Re: [SOLVED] AUR's enlightenment-git installation problem

Yeah, I knew it was a matter of days (I know weekend is for fun) so I tried to wait until Monday night, but didn't need to. Thanks Scimmia for maintaining it. PS works like a charm.

Offline

Board footer

Powered by FluxBB