commit | 081d9923e122f50b1f280339dad3170fcad61a30 | [log] [tgz] |
---|---|---|
author | Georges Basile Stavracas Neto <georges.stavracas@gmail.com> | Thu Sep 29 17:18:10 2022 -0300 |
committer | Georges Basile Stavracas Neto <georges.stavracas@gmail.com> | Fri Sep 30 13:06:18 2022 +0000 |
tree | 1598768048cbfcbef435d3c3a821cdb15928be34 | |
parent | 45b8685458a95a8a80eeab7758854b7ee5e236f9 [diff] |
build: Let Meson figure out Python installation Commit 4a4d9eb6624 initially switched Meson to find the python program using find_program('python3'). Sadly that caused a regression, since in some cases with MSVC it would fallback to 'meson.exe runpython', which is undesired. However, that particular code was reverted back to an also undesired lookup method, find_installation('python3'). This way of finding python also breaks on Windows + MSVC, in particular when setting it up as follows: ``` winget install python winget install meson ``` This fails building GLib with: > python3 not found Fix that by not passing any argument to find_installation(), which lets Meson figure it all out by itself. (cherry picked from commit 255fa26b964bbcd22150dafbfe5ead0acf0b84ad)
GLib is the low-level core library that forms the basis for projects such as GTK and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system.
The official download locations are: https://download.gnome.org/sources/glib
The official web site is: https://www.gtk.org/
See the file ‘INSTALL.in’
Only the most recent unstable and stable release series are supported. All older versions are not supported upstream and may contain bugs, some of which may be exploitable security vulnerabilities.
See SECURITY.md for more details.
API documentation is available online for GLib for the:
If you have a question about how to use GLib, seek help on GNOME’s Discourse instance. Alternatively, ask a question on StackOverflow and tag it glib
.
Bugs should be reported to the GNOME issue tracking system. You will need to create an account for yourself. You may also submit bugs by e-mail (without an account) by e-mailing incoming+gnome-glib-658-issue-@gitlab.gnome.org, but this will give you a degraded experience.
Bugs are for reporting problems in GLib itself, not for asking questions about how to use it. To ask questions, use one of our discussion forums.
In bug reports please include:
tests/
subdirectory, that will be most convenient. Otherwise, please include a short test program that exhibits the behavior. As a last resort, you can also provide a pointer to a larger piece of software that can be downloaded.Please follow the contribution guide to know how to start contributing to GLib.
Patches should be submitted as merge requests to gitlab.gnome.org. If the patch fixes an existing issue, please refer to the issue in your commit message with the following notation (for issue 123):
Closes: #123
Otherwise, create a new merge request that introduces the change. Filing a separate issue is not required.
main
The default development branch of GLib has been renamed to main
. To update your local checkout, use:
git checkout master git branch -m master main git fetch git branch --unset-upstream git branch -u origin/main git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/main