From 8b47b09a5adf35ee52d5a1e5f52fb5a6597b2598 Mon Sep 17 00:00:00 2001 From: Mayank Sharma Date: Wed, 28 Aug 2019 12:25:54 +0530 Subject: build: Bump libgdata dependency to support latest features libgdata API has been augmented with GDataDocumentsProperty API in the latest release 0.17.11. Since, we're using that API to support copy/move operations, we bump the required dependency version accordingly. We also remove the HAVE_LIBGDATA_* ifdefs since we require libgdata version >= 0.17.11 for the google backend to work properly. --- meson.build | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 62256295..8fcfee7f 100644 --- a/meson.build +++ b/meson.build @@ -417,10 +417,7 @@ enable_google = get_option('google') if enable_google assert(enable_goa, 'Google backend requested but GOA is required') - libgdata_dep = dependency('libgdata', version: '>= 0.17.3') - foreach version: ['0.17.7', '0.17.9'] - config_h.set10('HAVE_LIBGDATA_' + version.underscorify(), libgdata_dep.version().version_compare('>= ' + version)) - endforeach + libgdata_dep = dependency('libgdata', version: '>= 0.17.11') endif # *** Check for gphoto2 *** -- cgit v1.2.1