[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: building default not possible?
From: |
Torsten |
Subject: |
Re: building default not possible? |
Date: |
Mon, 08 Jul 2013 21:12:35 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130623 Thunderbird/17.0.7 |
On 08.07.2013 20:38, Torsten wrote:
> On 08.07.2013 20:27, Jordi Gutiérrez Hermoso wrote:
>> On 8 July 2013 14:18, Torsten <address@hidden> wrote:
>>> building the recent version (default branch) breaks with
>>
>>
>> http://wiki.octave.org/FAQ#I.27m_having_problem_XXX_using_the_latest_Octave_version
>>
>> - Jordi G. H.
>>
> hg id says
>
> aebb54d99dba tip
>
> Torsten
>
Okay, cset 861516dcad19 with the changes to __magick_read__.cc causes
the trouble for me.
In the case when HAVE_MAGICK is not defined (as on my system),
the new function gripe_disabled_feature() in gripes.cc is called but
there is no #inlcude "gripes.h". Adding this fixes the issue.
I have pushed changeset
http://hg.savannah.gnu.org/hgweb/octave/rev/5c25f7ed080c adding the
missing include but there are still a bunch of warnings during
compilation of __magick_read__.cc:
../../libinterp/dldfcn/__magick_read__.cc:406:1: warning: unused
parameter 'args' [-Wunused-parameter]
../../libinterp/dldfcn/__magick_read__.cc:406:1: warning: unused
parameter 'nargout' [-Wunused-parameter]
../../libinterp/dldfcn/__magick_read__.cc:874:1: warning: unused
parameter 'args' [-Wunused-parameter]
../../libinterp/dldfcn/__magick_read__.cc:1010:1: warning: unused
parameter 'args' [-Wunused-parameter]
../../libinterp/dldfcn/__magick_read__.cc:1157:1: warning: unused
parameter 'args' [-Wunused-parameter]
../../libinterp/dldfcn/__magick_read__.cc:1215:1: warning: unused
parameter 'args' [-Wunused-parameter]
../../libinterp/dldfcn/__magick_read__.cc:378:1: warning: 'void
maybe_initialize_magick()' defined but not used [-Wunused-function]
Torsten