1db1322639
Switch to meson-package to fix the following build failure raised since
bump of gobject-introspection to version 1.68.0 in commit
abc110e362
:
Could not find GIR file 'Gio-2.0.gir'; check XDG_DATA_DIRS or use --includedir
error parsing file Polkit-1.0.gir: Failed to parse included gir Gio-2.0
If the above error message is about missing .so libraries, then setting up GIR_EXTRA_LIBS_PATH in the .mk file should help.
Typically like this: PKG_MAKE_ENV += GIR_EXTRA_LIBS_PATH="$(@D)/.libs"
Fixes:
- http://autobuild.buildroot.org/results/26bcb21900b403db690d6005dbef0a76ff494d6c
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
23 lines
803 B
Plaintext
23 lines
803 B
Plaintext
config BR2_PACKAGE_POLKIT
|
|
bool "polkit"
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2, dbus
|
|
depends on BR2_USE_MMU # libglib2, dbus
|
|
depends on BR2_USE_WCHAR # libglib2
|
|
depends on !BR2_STATIC_LIBS # duktape
|
|
select BR2_PACKAGE_DBUS
|
|
select BR2_PACKAGE_DUKTAPE
|
|
select BR2_PACKAGE_EXPAT
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
help
|
|
PolicyKit is a toolkit for defining and handling
|
|
authorizations. It is used for allowing unprivileged
|
|
processes to speak to privileged processes.
|
|
|
|
http://www.freedesktop.org/wiki/Software/polkit
|
|
|
|
comment "polkit needs a toolchain with dynamic library, wchar, threads, gcc >= 7"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_GCC_AT_LEAST_7 || \
|
|
BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
|