-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
glib: add v2.82.4, package_info() fixes, add gettext tool_requires #26363
base: master
Are you sure you want to change the base?
Conversation
meson.build always looks for xgettext executable to generate locale data. It's likely to be found on the host system. Ensure that it's consistently available from Conan.
Hello, |
Try my personal fork. There's no active apparent interest from the team in getting the GNOME stack in a complete and working state any time soon. I've added introspection support to all GNOME projects and have a complete gstreamer recipe with introspection support as well. |
Thanks, I ll give it a try. |
@costisth I have tested it with MSVC and it should work - you can open an issue on my fork if you encounter any problems. |
Summary
Changes to recipe: glib/2.82.4
Motivation
Adds the latest version, which is required for
gobject-introspection/1.82.0
.Details
See the individual commits for details.
Version 2.79 added
introspection
option to Meson options to build and install introspection data (.gir and .typelib files) with GLib itself instead of providing it undergobject-introspection
. I considered adding support for it, but it fails due to a dependency graph cycle, even ifgobject-introspection
would be a puretool_requires
in the GLib recipe.This unfortunately means that introspection support is effectively broken for GLib 2.79 and newer on Conan.