On Thu, 07 Aug 2025 11:05:17 +0900 Masaru Nomiya <nom...@lake.dti.ne.jp> said:

> Hello,
> 
> In the Message; 
> 
>   Subject    : Re: [e-users] Building the latest git head of enlightenment
> got error Message-ID :
> <CA+iibzCvHqi=1rvuxmftmfozvr5xyp827eezjaz1xwfanqt...@mail.gmail.com> Date &
> Time: Wed, 6 Aug 2025 13:41:20 +0200
> 
> [DA] == daniel antoine <univa...@gmail.com> has written:
> 
> [...]
> DA>  Normally the option set for the wizard is in enlightenment
> DA>  meson_options.txt file
> 
> DA>  option('wizard',
> DA>  type: 'boolean',
> DA>  value: true,
> DA>  description: 'enable wizard module: (default=true)')
> 
> I added -Dwizard=false option, then the problem was solved.

you're in trouble then for the next time you start with no config in e. you
need the wizrd to do a setup as the default profile requires the wizard module
and default is what you get the first time you run e.

your problemi s your code is not what is in e. the code is seemingly 7+ years
old as the e_wizard_labels_update() has not existed for 7 years. 7 years ago
that was all moved into a struct with function pointers.

../src/modules/wizard/page_010.c: In function ‘wizard_page_show’:
../src/modules/wizard/page_010.c:219:24: error: implicit declaration of
function ‘e_wizard_labels_update’ [-Wimplicit-function-declaration] 219
|                        e_wizard_labels_update();

is the warning you reported... e_wizard_labels_update(). very specifically.
complaining it was being used there when that function is not referenced at all
in the git code.. and when you grepped for it, it's not there. so i can't tell
you what you did wrong. your compiler is complaining about a function being
used that is implicit... your grep says the function call is simply not
there... so you either replaced ancient code with new code after your re-cloned
the tree or maybe you have modified the file locally? i don't know but
disabling the wizard is not the solution.

> Thanks, Daniel.
> 
> Why was I able to build it until now..... (_ _?
> 
> Best Regards.
> 
> ---
> ┏━━┓彡    Masaru Nomiya                   mail-to: nomiya @ lake.dti.ne.jp
> ┃\/彡
> ┗━━┛        "The AI model is not your therapist and the company behind
>                 it can't necessarily keep it secret. Sam Altman thinks
>                 that's 'very screwed up.'"
> 
>  -- Even OpenAI's CEO Says Be Careful What You Share With ChatGPT, Jon Reed --
> 
> 
> _______________________________________________
> enlightenment-users mailing list
> enlightenment-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-users
> 


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



_______________________________________________
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users

Reply via email to