aboutsummaryrefslogtreecommitdiff
path: root/build-aux
AgeCommit message (Collapse)Author
2020-01-30build-aux: fix warning in the built _get_string() methods with -Wsign-compareAleksander Morgado
mm-enums-types.c: In function ‘mm_modem_lock_get_string’: mm-enums-types.c:165:17: warning: comparison of integer expressions of different signedness: ‘MMModemLock’ {aka ‘enum <anonymous>’} and ‘gint’ {aka ‘const int’} [-Wsign-compare] 165 | if (val == mm_modem_lock_values[i].value) | ^~
2015-08-02libmm-glib: added support for Modem.Voice and Call interfacesRiccardo Vangelisti
2012-10-04build,build-aux: include missing `mm-errors-quarks-template.c' file in distAleksander Morgado
2012-10-04docs: include documentation for enum/flags helpersAleksander Morgado
2012-03-16build: autogenerate `mm-errors-quarks.c'Aleksander Morgado
We define custom nicks for each error enum, matching the DBus error entry that we want to have with each of them.
2012-03-15api,header: include default DBus path prefix for SMS objectsAleksander Morgado
2012-03-15api,header: define common object prefixes in the daemon headerAleksander Morgado
2012-03-15build: fix errors templateAleksander Morgado
Equivalent to the fix in d15b1f201 applied to the enums template. Spotted by Nathan Williams.
2012-03-15build: autogenerate enum/flags string getter/buildersAleksander Morgado
Each enum will have its own #_get_string (), and each flags will have its own #_build_string_from_mask ().
2012-03-15build: require glib 2.30.2Aleksander Morgado
So that we get the following fix in glib-mkenums: https://bugzilla.gnome.org/show_bug.cgi?id=661797
2012-03-15build: let enum and error templates be completely genericAleksander Morgado
Don't include anything in the templates specific to the file to be built, like #ifdef guards in headers or #include in sources.
2012-03-15build: disable autogeneration of the 0.5 API header fileAleksander Morgado
But keep it around as a static file, while we do the migration to the new interface.
2012-03-15libmm-common: include Errors type informationAleksander Morgado
The code to handle the Errors type information is automatically built with `glib-mkenums' and the new templates kept under `build-aux'.
2012-03-15libmm-common: include Enums and Flags type informationAleksander Morgado
The code to handle the Enums and Flags type information is automatically built with `glib-mkenums' and the new templates kept under `build-aux'. Note: We currently skip the type information of `MMModemBand'. GFlagsValue can hold only 32-bit types, and we're working with a 64-bit flag here. See: https://bugzilla.gnome.org/show_bug.cgi?id=663054
2012-03-15build: setup autogeneration of names header for the new APIAleksander Morgado
The `include/ModemManager-names.h' autogenerated header includes the list of Interface, Method, Signal and Property names defined in the DBus API.
2012-03-15build: setup header generator in its own include/MakefileAleksander Morgado
Also move helper files to the new `build-aux' directory.