summaryrefslogtreecommitdiff
path: root/meson_options.txt
Commit message (Collapse)AuthorAgeFilesLines
* remove deprecated oauth1 authorizerDaniel Kolesa2021-06-171-5/+0
|
* build: Remove default values from descriptions in meson_options.txtPhilip Withnall2020-04-031-3/+3
| | | | | | | | | | People should be able to get these from meson itself, or by reading `meson_options.txt`. Putting them in the description strings is just going to lead to that going out of sync with the actual options. Spotted by Debarshi Ray in !23. Signed-off-by: Philip Withnall <withnall@endlessm.com>
* build: Don’t enable installed tests by defaultPhilip Withnall2020-04-031-1/+1
| | | | | | Conventionally, they’re not enabled by default. Signed-off-by: Philip Withnall <withnall@endlessm.com>
* build: Remove redundant comment from meson_options.txtPhilip Withnall2020-04-031-1/+0
| | | | Signed-off-by: Philip Withnall <withnall@endlessm.com>
* build: Disable the gtk-doc documentation by defaultDebarshi Ray2020-03-271-1/+1
| | | | | | | | | This matches the documentation in the current Meson build, and the behaviour of the old Autotools build. Fallout from d3ba69233a9ef1f415b10efc44ea186a6d58a2bb https://gitlab.gnome.org/GNOME/libgdata/-/merge_requests/23
* build: Make OAuth 1.0 support optional and disabled by defaultPhilip Withnall2019-08-211-0/+5
| | | | | | | | | | | | | | | | | liboauth is unmaintained and hard to compile at the moment. OAuth 1.0 itself has been deprecated in Google APIs since 2012, in favour of OAuth 2.0 or other more modern authentication/authorisation methods. Add a new configure option for `oauth1`, and disable it by default. If it’s disabled, the `GDataOAuth1Authorizer` will return errors when used (but the API is still available and not marked as deprecated yet). Eventually the `GDataOAuth1Authorizer` API will be marked as deprecated, but we can’t do that at the moment as we’re in API freeze. Signed-off-by: Philip Withnall <withnall@endlessm.com> Fixes: #1
* build: Port from Autotools to mesonMayank Sharma2019-06-251-0/+45
Automake 1.16.1 has issues with generating a valid Makefile. Since, libgdata is one of the core-deps of GNOME, it should be ported from Autotools + make to meson + ninja. Significant contributions from both Iñigo Martínez and Mayank Sharma.