Commit 428e32c2 authored by Jérome Perrin's avatar Jérome Perrin

software/powerdns: declare a minium gcc version

This software can use system gcc. On test nodes we observed successful
builds when system gcc is 8.3.0 and failures with system gcc is 6.3.0:

    checking whether g++ supports C++17 features with -std=c++17... no
    checking whether g++ supports C++17 features with +std=c++17... no
    checking whether g++ supports C++17 features with -h std=c++17... no
    checking whether g++ supports C++17 features with -std=c++1z... no
    checking whether g++ supports C++17 features with +std=c++1z... no
    checking whether g++ supports C++17 features with -h std=c++1z... no
    configure: error: *** A compiler with support for C++17 language features is required.
    ...
    While:
      Installing powerdns.
parent 50f6a557
Pipeline #18454 failed with stage
in 0 seconds
......@@ -13,6 +13,10 @@ parts =
[python]
part = python3
[gcc]
# powerdns needs a compiler with C++17 features
min_version = 8
[eggs]
recipe = zc.recipe.egg
eggs =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment