Il 24/01/23 08:16, Jakub Jelinek ha scritto:
> On Tue, Jan 24, 2023 at 10:00:47AM +0300, Vascom wrote:
>> I have some packages failed.
>> One of them libtins. Problem is that:
>>
>> error: 'uint32_t' is not a member of 'std';
>>
>> Is it normal? Is it GCC 13 change?
> See
> https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
> Some libstdc++ headers included <cstdint> in older versions
> as an implementation detail but no longer do.
>
> Including stdint.h will introduce ::uint32_t type among others,
> but not std::uint32_t, if you use the latter, you need to
> include <cstdint>.
>
>       Jakub

I think rawtherapee is FTB for this as well:

/builddir/build/BUILD/rawtherapee-5.9/rtengine/dcraw.h:187:13: error:
'uint32_t' does not name a type

and

/builddir/build/BUILD/rawtherapee-5.9/rtengine/dcraw.h:24:1: note:
'uint32_t' is defined in header '<cstdint>'; did you forget to '#include
<cstdint>'?

Should I patch dcraw.h to have '#include <cstdint>'?

Mattia

_______________________________________________
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to