Index: src/main.c =================================================================== --- src/main.c (revision 193) +++ src/main.c (working copy) @@ -27,7 +27,9 @@ #include #include +#if 0 #include +#endif #include #include "applet.h" @@ -36,11 +38,15 @@ int main (int argc, char *argv[]) { NMApplet * applet; +#if 0 GnomeProgram * program; program = gnome_program_init ("nm-applet", VERSION, LIBGNOMEUI_MODULE, argc, argv, GNOME_PARAM_NONE, GNOME_PARAM_NONE); +#else + gtk_init (&argc, &argv); +#endif bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); @@ -53,7 +59,9 @@ gtk_main (); g_object_unref (applet); +#if 0 g_object_unref (program); +#endif exit (0); } Index: configure.ac =================================================================== --- configure.ac (revision 193) +++ configure.ac (working copy) @@ -65,8 +65,7 @@ gtk+-2.0 >= 2.6 libglade-2.0 gconf-2.0 - gnome-keyring-1 - libgnomeui-2.0]) + gnome-keyring-1]) ##### Find out the version of DBUS we're using dbus_version=`pkg-config --modversion dbus-1`