package/libxslt: fix static build
[buildroot-gz.git] / package / libfm / Config.in
blob603b4d51ee678583da96b449f2c1fa560245e9f1
1 config BR2_PACKAGE_LIBFM
2         bool "libfm"
3         select BR2_PACKAGE_MENU_CACHE
4         select BR2_PACKAGE_LIBGLIB2
5         select BR2_PACKAGE_LIBGTK2
6         select BR2_PACKAGE_CAIRO
7         depends on BR2_PACKAGE_XORG7
8         depends on BR2_USE_WCHAR # libglib2
9         depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
10         depends on BR2_USE_MMU # libglib2
11         depends on BR2_INSTALL_LIBSTDCPP # libgtk2
12         depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libgtk2 -> pango -> harfbuzz
13         help
14           A glib/gio-based library providing some file management
15           utilities and related-widgets missing in gtk+/glib. This is
16           the core of PCManFM.  The library is desktop independent
17           (not LXDE specific) and has clean API. It can be used to
18           develop other applications requiring file management
19           functionality. For example, you can create your own file
20           manager with facilities provided by libfm.
22           http://wiki.lxde.org/en/Libfm
24 comment "libfm needs X.org and a toolchain w/ wchar, threads, C++"
25         depends on BR2_USE_MMU
26         depends on BR2_TOOLCHAIN_HAS_SYNC_4
27         depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP || \
28                 !BR2_TOOLCHAIN_HAS_THREADS || !BR2_PACKAGE_XORG7