diff options
Diffstat (limited to 'package/Makefile.in')
-rw-r--r-- | package/Makefile.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/package/Makefile.in b/package/Makefile.in index f8557f700..531f8de1f 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -111,3 +111,16 @@ ifeq ($(BR2_INSTALL_LIBSTDCPP),) TARGET_CONFIGURE_OPTS+=CXX="" endif +# X Windowing system + +XSERVER:= +ifeq ($(strip $(BR2_PACKAGE_TINYX)),y) +XSERVER+=tinyx +endif +ifeq ($(strip $(BR2_PACKAGE_XORG)),y) +XSERVER+=xorg +endif +ifeq ($(strip $(BR2_PACKAGE_XGGI)),y) +XSERVER+=xggi +endif + |