1config BR2_PACKAGE_GCR 2 bool "gcr" 3 depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # gnupg2 4 depends on BR2_USE_WCHAR # libglib2 5 depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 6 depends on BR2_USE_MMU # libglib2 7 depends on !BR2_STATIC_LIBS # p11-kit 8 select BR2_PACKAGE_GNUPG2 # runtime 9 select BR2_PACKAGE_LIBGCRYPT 10 select BR2_PACKAGE_LIBGLIB2 11 select BR2_PACKAGE_P11_KIT 12 help 13 Library for cryptographic UIs and accessing PKCS#11 modules. 14 15 https://developer.gnome.org/gcr/ 16 17comment "gcr needs a toolchain w/ wchar, threads, dynamic library" 18 depends on BR2_USE_MMU 19 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ 20 BR2_STATIC_LIBS 21