mysql: fixed variant mismatch with boost (#20370)

Require boost at cxxstd=14 if cxxstd=14 is selected, not 11
This commit is contained in:
Andre Sailer 2020-12-14 14:31:57 +01:00 committed by GitHub
parent 8fd4719291
commit d1bebb4d05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,7 @@ class Mysql(CMakePackage):
# 8.0.19+
depends_on('boost@1.70.0 cxxstd=98', type='build', when='@8.0.19: cxxstd=98')
depends_on('boost@1.70.0 cxxstd=11', type='build', when='@8.0.19: cxxstd=11')
depends_on('boost@1.70.0 cxxstd=11', type='build', when='@8.0.19: cxxstd=14')
depends_on('boost@1.70.0 cxxstd=14', type='build', when='@8.0.19: cxxstd=14')
depends_on('boost@1.70.0 cxxstd=17', type='build', when='@8.0.19: cxxstd=17')
# 8.0.16--8.0.18
depends_on('boost@1.69.0 cxxstd=98', type='build', when='@8.0.16:8.0.18 cxxstd=98')