[gnome-maps] Remove libgd submodule



commit 28865edc64c89ed11d04c6c873ee571a6bfab52b
Author: Yosef Or Boczko <yoseforb gmail com>
Date:   Wed Aug 7 14:05:26 2013 +0300

    Remove libgd submodule
    
    https://bugzilla.gnome.org/show_bug.cgi?id=705594

 .gitmodules        |    3 ---
 Makefile.am        |    4 +---
 autogen.sh         |    3 ---
 configure.ac       |    5 -----
 libgd              |    1 -
 src/application.js |    3 ---
 6 files changed, 1 insertions(+), 18 deletions(-)
---
diff --git a/Makefile.am b/Makefile.am
index 79ae28a..c4b9f50 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,3 +1 @@
-ACLOCAL_AMFLAGS = -I m4 -I libgd ${ACLOCAL_FLAGS}
-
-SUBDIRS = libgd src data po
+SUBDIRS = src data po
diff --git a/autogen.sh b/autogen.sh
index d6915fe..bd729eb 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -5,7 +5,6 @@ srcdir=`dirname $0`
 test -z "$srcdir" && srcdir=.
 
 PKG_NAME="gnome-maps"
-ACLOCAL_FLAGS="-I libgd $ACLOCAL_FLAGS"
 
 (test -f $srcdir/src/main.js) || {
     echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
@@ -18,8 +17,6 @@ which gnome-autogen.sh || {
     exit 1
 }
 
-git submodule update --init --recursive
-
 REQUIRED_AUTOCONF_VERSION=2.59
 REQUIRED_AUTOMAKE_VERSION=1.9
 REQUIRED_INTLTOOL_VERSION=0.40.0
diff --git a/configure.ac b/configure.ac
index ad2db6b..4f1eb42 100644
--- a/configure.ac
+++ b/configure.ac
@@ -39,13 +39,8 @@ AC_SUBST(GJS_CONSOLE)
 GLIB_COMPILE_RESOURCES=`$PKG_CONFIG --variable glib_compile_resources gio-2.0`
 AC_SUBST(GLIB_COMPILE_RESOURCES)
 
-LIBGD_INIT([
-  gir
-])
-
 AC_CONFIG_FILES([
     Makefile
-    libgd/Makefile
     src/Makefile
     data/Makefile
     data/gnome-maps.desktop.in
diff --git a/src/application.js b/src/application.js
index 17be539..b31a0a4 100644
--- a/src/application.js
+++ b/src/application.js
@@ -30,7 +30,6 @@ const _ = imports.gettext.gettext;
 const GtkClutter = imports.gi.GtkClutter;
 const Gio = imports.gi.Gio;
 const Gtk = imports.gi.Gtk;
-const Gd = imports.gi.Gd;
 const GLib = imports.gi.GLib;
 
 const Main = imports.main;
@@ -53,8 +52,6 @@ const Application = new Lang.Class({
         GLib.set_prgname('gnome-maps');
         GLib.set_application_name(_("Maps"));
 
-        Gd.ensure_types();
-
         this.parent({ application_id: 'org.gnome.Maps' });
     },
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]