summaryrefslogtreecommitdiff
path: root/atk/atk-enum-types.c.template
Commit message (Collapse)AuthorAgeFilesLines
* Drop volatile from the enumeration type registrationEmmanuele Bassi2022-03-241-1/+1
| | | | | It's been removed by recent GLib versions, and we're getting compiler warnings. It also has never been appropriate to use `volatile`.
* build: use @basename instead of @filenameSamuel Thibault2018-08-301-1/+1
| | | | Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=789619
* build: Use template files for the ATK enumerationsEmmanuele Bassi2017-05-221-0/+38
Placing the enumeration GType inline in the Makefile makes them unreadable, and does not allow to easily update the body of the get_type() functions. Case in point: ATK still generates thread-unsafe versions of the enumeration and flags GTypes. Let's update the build to something more idiomatic, and use template files, like every other G* library does.