| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
It doesn't make much sense to set this in per-directory
meson files, since that makes use use different logging
facilities in different parts of the project. Set it
globally.
|
|
|
|
| |
We use it in the secure memory allocator, if it's available.
|
|
|
|
| |
Use the new sysprof collector api to do tracing.
|
|
|
|
|
|
|
|
|
|
|
| |
commit 14bf58ec5dfdf19e3ca603b977626608dafc729b dropped support
for using the DAMAGE extension since there was no code that
needed it.
We're going to need it again, however, to address an NVidia
vendor driver issue.
This commit does the plumbing to add it back.
|
|
|
|
|
|
|
|
|
| |
We require a C compiler supporting C99 now. The main purpose of
these fallbacks was for MSVC. From what I can see this is now all supported
by MSVC 2015+ anyway.
The only other change this includes is to replace isnanf() with the
(type infering) C99 isnan() macro, because MSVC doesn't provide isnanf().
|
|
|
|
|
| |
This sorter compares numbers obtained from items
by evaluating an expression.
|
|
|
|
|
| |
Make this dependency optional at build time, and prefer it over
the old tracker <= 2.x implementation.
|
|
|
|
| |
It's not used.
|
|
|
|
|
| |
It was only defined in the old autotools build to support a >20 year old x11,
https://bugzilla.gnome.org/show_bug.cgi?id=148032
|
|
|
|
|
|
|
|
| |
httpGetAuthString() was added with cups 1.3 and we depend on a newer version
now. The direct field access was a fallback in case httpGetAuthString()
was missing, so this can also be dropped.
Ported to master from !938
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Use cairo-script-interpreter to parse the scripts that generate cairo
nodes.
This requires libcairoscriptinterpreter.so to work properly, but if
it isn't found we disable this (unimportant for normal functioning)
code and just emits a parser warning.
The testsuite requires it however or it will fail.
A new test is included that tests all of this.
|
|
|
|
|
|
|
|
|
|
| |
This uses the new sysprof-3 ABI to implement the capture writer. It also
uses the statically linked libsysprof-capture-3.a that is provided with
Sysprof for the capture writing to ensure that we do not leak any symbols
nor depend on any additional libraries.
The GTK_TRACE_FD can be used to pass a FD for tracing into Gtk. Sysprof
uses this when the Gtk instrument is selected for recording.
|
|
|
|
|
|
| |
XInput2 is more than a decade old already, and the input improvements
there (and in every other backend really) make it untenable to have
support for X11 core input events dragging things behind.
|
|
|
|
|
| |
Drop support for versions of CUPS < 2.0, to simplify the backend code
and drop a lot of conditional blocks.
|
|
|
|
|
| |
We support CUPS ≥ 1.2, but we use API that was introduced and deprecated
at a later point.
|
|
|
|
|
|
|
|
| |
The tests were added when we thought we had to align memory allocations
for structures including a Graphene type in their members. Graphene
added alignment annotations for its types, and we never really used the
symbols we set after testing for allocations being aligned out of the
box with malloc(), and for aligned allocators.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* A bunch of new variables for config.h.meson
* A check for aligned allocation being necessary at all
(graphene must use GCC vector instructions or SSE2)
* A check for C malloc() being aligned at 16-byte boundaries
* A check for a few special aligned allocator functions being
present and not being built-ins (posix_memalign is a builtin
in GCC, even on platforms where there is no posix_memalign
system function)
* Added -mstackrealign flag on Windows, since otherwise
stack variables may become unaligned when the stack briefly
passes through OS code (such as in various callbacks and
handlers)
|
|
|
|
|
|
|
|
|
|
|
| |
The header linux/input.h used by GDK is specific to Linux. It is
possible to get a few Linux headers on FreeBSD by installing v4l_compat,
but it is usually better to use the one shipped with FreeBSD.
We prefer dev/evdev/input.h to linux/input.h here, so it will always use
dev/evdev/input.h on FreeBSD regardless of v4l_compat.
https://svnweb.freebsd.org/changeset/ports/465644
|
| |
|
|
|
|
| |
This adds a module using ffmpeg to implement the GtkMediaFile interface.
|
|
|
|
|
|
|
| |
Instead of hard-coding the path of iso-codes, we can get the prefix with
pkg-config. We still fallback to /usr when it is not available.
https://bugzilla.gnome.org/show_bug.cgi?id=792282
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Add integration of the libcloudproviders DBus API to the
GtkPlacesSidebar by showing name and sync status of the cloud providers.
The exported menu is rendered as a GtkPopover.
The sidebar will be updated if the list of cloudproviders changes e.g.
by adding or removing an account. If any cloud provider changes detailed
information like sync status only the individual sidebar row gets
updated.
Co-authored-by: Carlos Soriano <csoriano@gnome.org>
Co-authored-by: Daniel Boles <dboles@src.gnome.org>
https://bugzilla.gnome.org/show_bug.cgi?id=786123
|
|
|
|
| |
Despite the comment, we ended up without ENABLE_NLS.
|
|
|
|
| |
Instead of injecting them into the C compiler arguments.
|
|
|
|
|
|
|
|
|
| |
We have to work around some ordering problems here. We still
manage to keep most of the guts in modules/input/meson.build,
so it's not too ugly overall.
(The autotools build solves this with a 'make -C ../../input/modules'
inside gtk/Makefile, but that's not something we can or want to do.)
|
|
|
|
|
| |
Lots of them are unused and can be removed. For others we
add a check.
|
| |
|
|
|
|
|
| |
The cups checks might not work properly everywhere yet,
since they don't use cups-config and parse the output yet.
|
| |
|
| |
|
| |
|
| |
|
|
Original work by: Jussi Pakkanen <jpakkane@gmail.com>
https://bugzilla.gnome.org/show_bug.cgi?id=769881
|