diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-02-13 15:49:04 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-02-13 16:13:37 +0100 |
commit | 60ff66d8075184855fbffee65cc3506aa12c8a75 (patch) | |
tree | aa50228b7a2c44312a85a97070406882a994f4bf /package/x11r7/xproto_trapproto | |
parent | 61f677cb060732316b41f072210986e97ae9379f (diff) |
Fix dependencies for TrapProto
The .pc file of TrapProto says that it depends on xt, even through it
doesn't depend on it at compile time. However, if xt isn't present
when TrapProto has been installed, the compilation of Xserver fails
telling that there is a missing dependency in TrapProto on Xt.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/x11r7/xproto_trapproto')
-rw-r--r-- | package/x11r7/xproto_trapproto/Config.in | 1 | ||||
-rw-r--r-- | package/x11r7/xproto_trapproto/xproto_trapproto.mk | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/package/x11r7/xproto_trapproto/Config.in b/package/x11r7/xproto_trapproto/Config.in index 3d2868f6f..0f9c4708e 100644 --- a/package/x11r7/xproto_trapproto/Config.in +++ b/package/x11r7/xproto_trapproto/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_XPROTO_TRAPPROTO bool "trapproto" + select BR2_PACKAGE_XLIB_LIBXT help trapproto 3.4.3 X.Org Trap protocol headers diff --git a/package/x11r7/xproto_trapproto/xproto_trapproto.mk b/package/x11r7/xproto_trapproto/xproto_trapproto.mk index 5ef5fa590..29c435607 100644 --- a/package/x11r7/xproto_trapproto/xproto_trapproto.mk +++ b/package/x11r7/xproto_trapproto/xproto_trapproto.mk @@ -10,5 +10,6 @@ XPROTO_TRAPPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto XPROTO_TRAPPROTO_AUTORECONF = NO XPROTO_TRAPPROTO_INSTALL_STAGING = YES XPROTO_TRAPPROTO_INSTALL_TARGET = NO +XPROTO_TRAPPROTO_DEPENDENCIES = xlib_libXt $(eval $(call AUTOTARGETS,package/x11r7,xproto_trapproto)) |