Don't try to dist old GApplication implementations
authorRyan Lortie <desrt@desrt.ca>
Tue, 19 Oct 2010 10:38:01 +0000 (12:38 +0200)
committerRyan Lortie <desrt@desrt.ca>
Tue, 19 Oct 2010 10:38:01 +0000 (12:38 +0200)
One of them was deleted already, even.

gio/Makefile.am
gio/gnullapplication.c [deleted file]

index fb09051..f432ae7 100644 (file)
@@ -398,7 +398,7 @@ libgio_2_0_la_SOURCES =             \
        $(marshal_sources)      \
        $(NULL)
 
-EXTRA_DIST += gnullapplication.c gdbusapplication.c strinfo.c
+EXTRA_DIST += strinfo.c
 
 $(libgio_2_0_la_OBJECTS): $(marshal_sources)
 
diff --git a/gio/gnullapplication.c b/gio/gnullapplication.c
deleted file mode 100644 (file)
index 83c1cee..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-/* GIO - GLib Input, Output and Streaming Library
- *
- * Copyright © 2010 Red Hat, Inc
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General
- * Public License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
- * Boston, MA 02111-1307, USA.
- *
- * Authors: Colin Walters <walters@verbum.org>
- */
-
-#include <string.h>
-#include <stdlib.h>
-
-#include "gioerror.h"
-
-static gboolean
-_g_application_platform_init (GApplication *app,
-                             GCancellable *cancellable,
-                             GError      **error)
-{
-  return TRUE;
-}
-
-static gboolean
-_g_application_platform_register (GApplication *app,
-                                 gboolean     *unique,
-                                 GCancellable *cancellable,
-                                 GError      **error)
-{
-  return TRUE;
-}
-
-static void
-_g_application_platform_on_actions_changed (GApplication *app)
-{
-}
-
-static void
-_g_application_platform_remote_invoke_action (GApplication  *app,
-                                              const gchar   *action,
-                                              GVariant      *platform_data)
-{
-}
-
-static void
-_g_application_platform_remote_quit (GApplication *app,
-                                     GVariant     *platform_data)
-{
-}
-
-static void
-_g_application_platform_default_quit (void)
-{
-  exit (0);
-}
-
-static void
-_g_application_platform_activate (GApplication *app,
-                                  GVariant     *data)
-{
-  exit (0);
-}