package/stella: needs gcc >= 6
authorFabrice Fontaine <fontaine.fabrice@gmail.com>
Sun, 17 May 2020 09:51:16 +0000 (11:51 +0200)
committerYann E. MORIN <yann.morin.1998@free.fr>
Sun, 17 May 2020 19:38:47 +0000 (21:38 +0200)
commit143c90fe826ce60ec8a4fc44f0ce5717d2c9e66c
tree9cd6d856650670f92894cf980312bc9b853b5a41
parent6491ca40f8374b310a08ceb904e2a274408739af
package/stella: needs gcc >= 6

stella converted most of its C-Style arrays to std::array since version
6.1:
https://github.com/stella-emu/stella/commit/0c0f732e5f50b08cfcbdc5ad96c4e18ad230c04b

However, gcc 5.x does not accept a = {} initialization for std::array:

In file included from src/emucore/ConsoleIO.hxx:18:0,
                 from src/emucore/Console.hxx:34,
                 from src/gui/AudioDialog.cxx:22:
src/emucore/Control.hxx:331:71: error: array must be initialized with a brace-enclosed initializer
     std::array<bool, 5> myDigitalPinState{true, true, true, true, true};
                                                                       ^

So add a dependency on gcc >= 6 instead of trying to patch the numerous
array initializations to make them compliant with C++11

Fixes:
 - http://autobuild.buildroot.org/results/dfd9b901fabf310ed9033b8a012466c565d58684

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
package/stella/Config.in