diff options
author | monsta <[email protected]> | 2015-08-25 16:00:41 +0300 |
---|---|---|
committer | infirit <[email protected]> | 2015-09-08 13:39:20 +0200 |
commit | 80c5e88588752d4a856a43fe292569afa6c1c31d (patch) | |
tree | 9008690c45e474f619279daca2a57596eebfc67f /src/eggsmclient.c | |
parent | 589ab9b7ce52f9b53dbea123c8fd2d9b3de1e53f (diff) | |
download | mate-terminal-80c5e88588752d4a856a43fe292569afa6c1c31d.tar.bz2 mate-terminal-80c5e88588752d4a856a43fe292569afa6c1c31d.tar.xz |
drop support for win32/osx
Diffstat (limited to 'src/eggsmclient.c')
-rw-r--r-- | src/eggsmclient.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/eggsmclient.c b/src/eggsmclient.c index 6f78626..4035060 100644 --- a/src/eggsmclient.c +++ b/src/eggsmclient.c @@ -333,23 +333,7 @@ egg_sm_client_get (void) if (global_client_mode != EGG_SM_CLIENT_MODE_DISABLED && !sm_client_disable) { -#if defined (GDK_WINDOWING_WIN32) - global_client = egg_sm_client_win32_new (); -#elif defined (GDK_WINDOWING_QUARTZ) - global_client = egg_sm_client_osx_new (); -#else - /* If both D-Bus and XSMP are compiled in, try XSMP first - * (since it supports state saving) and fall back to D-Bus - * if XSMP isn't available. - */ -# ifdef EGG_SM_CLIENT_BACKEND_XSMP global_client = egg_sm_client_xsmp_new (); -# endif -# ifdef EGG_SM_CLIENT_BACKEND_DBUS - if (!global_client) - global_client = egg_sm_client_dbus_new (); -# endif -#endif } /* Fallback: create a dummy client, so that callers don't have |