|
@@ -2,6 +2,7 @@ menuconfig BR2_PACKAGE_XORG7
|
|
|
bool "X.org X Window System"
|
|
|
depends on BR2_USE_WCHAR
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+ depends on !BR2_PREFER_STATIC_LIB # dlopen in xlib_libX11
|
|
|
help
|
|
|
Support for X11R7 libraries, servers, drivers, and/or
|
|
|
applications in the target.
|
|
@@ -262,5 +263,5 @@ if BR2_PACKAGE_XORG7
|
|
|
endmenu
|
|
|
endif
|
|
|
|
|
|
-comment "X.org needs a toolchain w/ wchar, threads"
|
|
|
- depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+comment "X.org needs a toolchain w/ wchar, threads, dynamic library"
|
|
|
+ depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_PREFER_STATIC_LIB
|