Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/main.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@gnome.org>2009-06-04 21:49:00 (GMT)
committer Christian Persch <chpe@gnome.org>2009-06-11 21:39:09 (GMT)
commitaaf935747f65a1084ba4ffa3cf32a1e1ea93c987 (patch)
tree94e927cec4374dc23c53f1ac071c022fccc08be8 /shell/main.c
parent0d4abbc120aa7f038739737de99de3ec3df0c60e (diff)
Make smclient optional
Add --with-smclient configure option, and conditionalise the code. Use --without-smclient to disable smclient. Smclient is disabled by default on hildon platform.
Diffstat (limited to 'shell/main.c')
-rw-r--r--shell/main.c20
1 files changed, 13 insertions, 7 deletions
diff --git a/shell/main.c b/shell/main.c
index 43fca48..41fd85f 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -37,10 +37,13 @@
#include "ev-init.h"
#include "ev-file-helpers.h"
#include "ev-stock-icons.h"
+
+#ifdef WITH_SMCLIENT
#include "eggsmclient.h"
#ifndef G_OS_WIN32
#include "eggdesktopfile.h"
#endif
+#endif /* WITH_SMCLIENT */
static gchar *ev_page_label;
static gchar *ev_find_string;
@@ -398,8 +401,11 @@ main (int argc, char *argv[])
context = g_option_context_new (N_("GNOME Document Viewer"));
g_option_context_set_translation_domain(context, GETTEXT_PACKAGE);
g_option_context_add_main_entries (context, goption_options, GETTEXT_PACKAGE);
-
+
+#ifdef WITH_SMCLIENT
g_option_context_add_group (context, egg_sm_client_get_option_group ());
+#endif
+
g_option_context_add_group (context, gtk_get_option_group (TRUE));
if (!g_option_context_parse (context, &argc, &argv, &error)) {
@@ -436,13 +442,13 @@ main (int argc, char *argv[])
ev_stock_icons_init ();
-#ifdef G_OS_WIN32
- /* Manually set name and icon in win32 */
- g_set_application_name (_("Evince"));
- gtk_window_set_default_icon_name ("evince");
-#else
+#if defined(WITH_SMCLIENT) && !defined(G_OS_WIN32)
egg_set_desktop_file (GNOMEDATADIR "/applications/evince.desktop");
-#endif /* G_OS_WIN32 */
+#else
+ /* Manually set name and icon */
+ g_set_application_name (_("Document Viewer"));
+ gtk_window_set_default_icon_name ("evince");
+#endif /* WITH_SMCLIENT && !G_OS_WIN32 */
ev_application_load_session (EV_APP);
load_files (file_arguments, args);