Skip to content
Snippets Groups Projects
Commit 03bb6500 authored by Phil Carns's avatar Phil Carns Committed by Peter Scheibel
Browse files

fio package: add optional libaio dependency (#11083)

parent c3e5c998
No related branches found
No related tags found
No related merge requests found
...@@ -16,9 +16,11 @@ class Fio(AutotoolsPackage): ...@@ -16,9 +16,11 @@ class Fio(AutotoolsPackage):
variant('gui', default=False, description='Enable building of gtk gfio') variant('gui', default=False, description='Enable building of gtk gfio')
variant('doc', default=False, description='Generate documentation') variant('doc', default=False, description='Generate documentation')
variant('libaio', default=False, description='Enable libaio engine')
depends_on('gtkplus@2.18:', when='+gui') depends_on('gtkplus@2.18:', when='+gui')
depends_on('cairo', when='+gui') depends_on('cairo', when='+gui')
depends_on('libaio', when='+libaio')
depends_on('py-sphinx', type='build', when='+doc') depends_on('py-sphinx', type='build', when='+doc')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment