Re: [ports-gcc-8] Unbreak multimedia/libmp4v2

2019-05-02 Thread Christian Weisgerber
Charlene Wendling: > TL;DR: i can't get libmp4v2 build with C++14. I'll take your word for it. > Thanks for this one. There are a lot of them actually: mostly > narrowing to int errors, there is an integer overflow somewhere > i guess, but i can't find it, for example: > > util/mp4art.cpp:378

Re: [ports-gcc-8] Unbreak multimedia/libmp4v2

2019-04-30 Thread Charlene Wendling
On Mon, 29 Apr 2019 23:59:03 +0200 Christian Weisgerber wrote: > Charlene Wendling: > > > > > src/cmeta.cpp:1386:16: error: converting to 'bool' from > > > > 'std::nullptr_t' requires direct-initialization [-fpermissive] > > > > return NULL; > > If that's the only problem, then these c

Re: [ports-gcc-8] Unbreak multimedia/libmp4v2

2019-04-29 Thread Christian Weisgerber
Charlene Wendling: > > > src/cmeta.cpp:1386:16: error: converting to 'bool' from > > > 'std::nullptr_t' requires direct-initialization [-fpermissive] > > > return NULL; If that's the only problem, then these could just be fixed by changing them to "return false". > > Again, it breaks because

Re: [ports-gcc-8] Unbreak multimedia/libmp4v2

2019-04-28 Thread Charlene Wendling
ping :) On Sun, 21 Apr 2019 01:42:49 +0200 Charlene Wendling wrote: > > > src/cmeta.cpp:1386:16: error: converting to 'bool' from > > 'std::nullptr_t' requires direct-initialization [-fpermissive] > > return NULL; > > Again, it breaks because it wants C++<11. Building libmp4v2 > with C+

[ports-gcc-8] Unbreak multimedia/libmp4v2

2019-04-20 Thread Charlene Wendling
> src/cmeta.cpp:1386:16: error: converting to 'bool' from > 'std::nullptr_t' requires direct-initialization [-fpermissive] > return NULL; Again, it breaks because it wants C++<11. Building libmp4v2 with C++03 for any compiler fixes the issue. It has been successfully tested on macppc/po