Add conflicts statement to mariadb (#12670)

The mariadb-5.5 series can not be compiled with gcc-9.1.0 and above. Add
a conflicts statement to reflect that.

The error is due to -Werror=address-of-packed-member, a warning that is
new in gcc-9.
This commit is contained in:
Glenn Johnson 2019-08-31 14:09:51 -05:00 committed by Adam J. Stewart
parent 4a5d740eaf
commit ed6c9e8ed8

View File

@ -35,3 +35,5 @@ class Mariadb(CMakePackage):
depends_on('libevent', when='+nonblocking')
depends_on('ncurses')
depends_on('zlib')
conflicts('%gcc@9.1.0:', when='@:5.5')