Qt: disable OpenGL support by default (#4962)
* Qt: disable OpenGL support by default * Fix qt+opengl build
This commit is contained in:
parent
f8dfb6a486
commit
408dfc8e86
1 changed files with 2 additions and 4 deletions
|
@ -53,8 +53,6 @@ class Qt(Package):
|
|||
# OpenSpeedShop project
|
||||
variant('krellpatch', default=False,
|
||||
description="Build with openspeedshop based patch.")
|
||||
variant('mesa', default=False,
|
||||
description="Depend on mesa.")
|
||||
variant('gtk', default=False,
|
||||
description="Build with gtkplus.")
|
||||
variant('webkit', default=False,
|
||||
|
@ -65,7 +63,7 @@ class Qt(Package):
|
|||
description="Build with D-Bus support.")
|
||||
variant('phonon', default=False,
|
||||
description="Build with phonon support.")
|
||||
variant('opengl', default=True,
|
||||
variant('opengl', default=False,
|
||||
description="Build with OpenGL support.")
|
||||
|
||||
patch('qt3krell.patch', when='@3.3.8b+krellpatch')
|
||||
|
@ -109,7 +107,7 @@ class Qt(Package):
|
|||
depends_on("python", when='@5.7.0:', type='build')
|
||||
|
||||
# OpenGL hardware acceleration
|
||||
depends_on("mesa", when='@4:+mesa')
|
||||
depends_on("mesa", when='@4:+opengl')
|
||||
depends_on("libxcb", when=sys.platform != 'darwin')
|
||||
depends_on("libx11", when=sys.platform != 'darwin')
|
||||
|
||||
|
|
Loading…
Reference in a new issue