static char const * const version_format_strings[] = {
" libsoup %s</td></tr>",
"<tr><td>cairo</td><td>%s ", "(%s)</td></tr>",
+ "<tr><td>gcr</td><td>%s</td></tr>",
"<tr><td>granite</td><td>%s</td></tr>",
"<tr><td>libnotify</td><td>%s</td></tr>",
"<tr><td>single instance</td><td>%s</td></tr>",
"<tr><td>Identification</td><td>%s</td></tr>",
"<tr><td>Video Formats</td><td>%s</td></tr>",
};
- char const * version_strings[] = {
+ gchar const* version_strings[] = {
LIBSOUP_VERSION,
CAIRO_VERSION_STRING, cairo_version_string (),
+ GCR_VERSION,
GRANITE_VERSION,
LIBNOTIFY_VERSION,
#ifdef HAVE_HILDON_2_2
platform, sys_name, architecture ? architecture : "", ident,
video_formats,
};
- int i = 0;
- GString * tmp = g_string_new("");;
-
+ gsize i = 0;
+ GString * tmp = g_string_new ("");
GString* more = g_string_new ("");
list_netscape_plugins (more, js_context);
list_about_uris (more);
return conf.env['HAVE_' + var]
if option_enabled ('gtk3'):
- check_pkg ('gcr-3', '2.32', mandatory=False)
+ gcr_pkg = 'gcr-3'
else:
- check_pkg ('gcr-3-gtk2', '2.32', mandatory=False)
+ gcr_pkg = 'gcr-3-gtk2'
+ check_pkg (gcr_pkg, '2.32', mandatory=False)
+ conf.define ('GCR_VERSION', ['No',conf.check_cfg(modversion=gcr_pkg)][conf.env['HAVE_GCR'] == 1])
if option_enabled ('unique'):
if option_enabled('gtk3'): unique_pkg = 'unique-3.0'