1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-09-28 14:55:26 +00:00

project: Do not allow deprecated gtk/gdk symbols

This will make sure that we're not introducing deprecated symbols which
could make it harder to migrate to Gtk4.
This commit is contained in:
Evangelos Ribeiro Tzaras 2021-11-26 06:48:08 +01:00
parent f068e20f68
commit 2026573e64

View file

@ -106,6 +106,9 @@ test_c_args = [
'-DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_70',
# see https://gitlab.gnome.org/GNOME/evolution-data-server/-/issues/332
'-DEDS_DISABLE_DEPRECATED',
# in preparation for the switch to Gtk4 we should make sure not to use deprecated symbols
'-DGDK_DISABLE_DEPRECATED',
'-DGTK_DISABLE_DEPRECATED',
]
if get_option('buildtype') != 'plain'