blob: 03e8c91a4538014647e8e78becc35689a74b3a2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
* vi:set noexpandtab tabstop=8 shiftwidth=8:
*
* Copyright (C) 2012-2013 Richard Hughes <richard@hughsie.com>
* Copyright (C) 2013 Matthias Clasen <mclasen@redhat.com>
* Copyright (C) 2015 Kalev Lember <klember@redhat.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include "config.h"
#include <glib/gi18n.h>
#include <gio/gio.h>
#include <gio/gdesktopappinfo.h>
#include <gtk/gtk.h>
#include <locale.h>
#include <sys/stat.h>
#include "gs-application.h"
#include "gs-debug.h"
int
main (int argc, char **argv)
{
int status = 0;
g_autoptr(GDesktopAppInfo) appinfo = NULL;
g_autoptr(GsApplication) application = NULL;
g_autoptr(GsDebug) debug = gs_debug_new_from_environment ();
g_set_prgname ("org.gnome.Software");
setlocale (LC_ALL, "");
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
textdomain (GETTEXT_PACKAGE);
/* Override the umask to 022 to make it possible to share files between
* the gnome-software process and flatpak system helper process.
* Ideally this should be set when needed in the flatpak plugin, but
* umask is thread-unsafe so there is really no local way to fix this.
*/
umask (022);
/* redirect logs */
application = gs_application_new (debug);
appinfo = g_desktop_app_info_new ("org.gnome.Software.desktop");
g_set_application_name (g_app_info_get_name (G_APP_INFO (appinfo)));
status = g_application_run (G_APPLICATION (application), argc, argv);
return status;
}
|