Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 880853 | Differences between
and this patch

Collapse All | Expand All

(-)a/gdata/gdata-service.c (-1 / +1 lines)
Lines 46-52 Link Here
46
46
47
#ifdef HAVE_GNOME
47
#ifdef HAVE_GNOME
48
#define GCR_API_SUBJECT_TO_CHANGE
48
#define GCR_API_SUBJECT_TO_CHANGE
49
#include <gcr/gcr-base.h>
49
#include <gcr/gcr.h>
50
#endif /* HAVE_GNOME */
50
#endif /* HAVE_GNOME */
51
51
52
#include "gdata-service.h"
52
#include "gdata-service.h"
(-)a/meson.build (-3 / +3 lines)
Lines 105-115 Link Here
105
  not_found_message: 'GTK+ support requested but gtk+-3.0 ' + gtk_dep_req_version + ' could not be found',
105
  not_found_message: 'GTK+ support requested but gtk+-3.0 ' + gtk_dep_req_version + ' could not be found',
106
)
106
)
107
107
108
# GNOME support, which pulls in gcr-base-3 to provide non-pageable memory
108
# GNOME support, which pulls in gcr-4 to provide non-pageable memory
109
gcr_dep = dependency('gcr-base-3', required: get_option('gnome'))
109
gcr_dep = dependency('gcr-4', required: get_option('gnome'))
110
enable_gnome = gcr_dep.found()
110
enable_gnome = gcr_dep.found()
111
if enable_gnome
111
if enable_gnome
112
  gdata_private_deps += dependency('gcr-base-3')
112
  gdata_private_deps += dependency('gcr-4')
113
endif
113
endif
114
config_h.set('HAVE_GNOME', enable_gnome)
114
config_h.set('HAVE_GNOME', enable_gnome)
115
115

Return to bug 880853