Add missing X-libs dependencies to vim+x (#7599)
This commit is contained in:
parent
2a36c61d0f
commit
28e49fa184
1 changed files with 5 additions and 0 deletions
|
@ -66,6 +66,11 @@ class Vim(AutotoolsPackage):
|
||||||
# support for auto/no/gtk2/gnome2/gtk3/motif/athena/neXtaw/photon/carbon
|
# support for auto/no/gtk2/gnome2/gtk3/motif/athena/neXtaw/photon/carbon
|
||||||
variant('gui', default=False, description="build with gui (gvim)")
|
variant('gui', default=False, description="build with gui (gvim)")
|
||||||
variant('x', default=False, description="use the X Window System")
|
variant('x', default=False, description="use the X Window System")
|
||||||
|
depends_on('libx11', when="+x")
|
||||||
|
depends_on('libsm', when="+x")
|
||||||
|
depends_on('libxpm', when="+x")
|
||||||
|
depends_on('libxt', when="+x")
|
||||||
|
depends_on('libxtst', when="+x")
|
||||||
|
|
||||||
depends_on('ncurses', when="@7.4:")
|
depends_on('ncurses', when="@7.4:")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue