Add conflicts statement to freetype for icc (#12111)

Freetype-2.8 and above use __builtin_shuffle which is not supported by
icc.
This commit is contained in:
Glenn Johnson 2019-07-24 12:33:24 -05:00 committed by Adam J. Stewart
parent 0f98cf0398
commit 642d3345f6

View file

@ -24,6 +24,10 @@ class Freetype(AutotoolsPackage):
depends_on('bzip2')
depends_on('pkgconfig', type='build')
conflicts('%intel', when='@2.8:',
msg='freetype-2.8 and above cannot be built with icc (does not '
'support __builtin_shuffle)')
patch('windows.patch', when='@2.9.1')
def configure_args(self):