From bc8baab004e77bf5e0254547e995e9c53693e85e Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mar 29 2010 12:59:25 +0000 Subject: drop unused patches --- diff --git a/0001-Fix-libm-and-libX11-linking.patch b/0001-Fix-libm-and-libX11-linking.patch deleted file mode 100644 index eb83377..0000000 --- a/0001-Fix-libm-and-libX11-linking.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff -up gedit-2.29.8/configure.ac.libm gedit-2.29.8/configure.ac ---- gedit-2.29.8/configure.ac.libm 2010-03-01 15:12:45.000000000 -0500 -+++ gedit-2.29.8/configure.ac 2010-03-02 18:53:13.191648202 -0500 -@@ -45,6 +45,7 @@ AC_PATH_PROG(GCONFTOOL, gconftool-2) - GTK_DOC_CHECK([1.0],[--flavour=no-tmpl]) - AC_CHECK_FUNCS(fsync) - AC_CHECK_FUNC(sigaction) -+AC_CHECK_LIB(m, floor) - - dnl make sure we keep ACLOCAL_FLAGS around for maintainer builds to work - AC_SUBST(ACLOCAL_AMFLAGS, "$ACLOCAL_FLAGS -I m4") -@@ -253,6 +254,7 @@ PKG_CHECK_MODULES(GEDIT, [ - gtk+-2.0 >= 2.16.0 - gtksourceview-2.0 >= 2.9.7 - gconf-2.0 >= 1.1.11 -+ x11 - ]) - - dnl FIXME: Remove this when removing gedit-message-area diff --git a/button-images.patch b/button-images.patch deleted file mode 100644 index 1fad67f..0000000 --- a/button-images.patch +++ /dev/null @@ -1,84 +0,0 @@ -diff -up gedit-2.27.4/plugins/docinfo/docinfo.ui.button-images gedit-2.27.4/plugins/docinfo/docinfo.ui ---- gedit-2.27.4/plugins/docinfo/docinfo.ui.button-images 2009-08-22 21:24:45.878430797 -0400 -+++ gedit-2.27.4/plugins/docinfo/docinfo.ui 2009-08-22 21:26:27.996679948 -0400 -@@ -1,6 +1,10 @@ - - - -+ -+ gtk-refresh -+ 4 -+ - - 5 - Document Statistics -@@ -44,66 +48,9 @@ - True - GTK_RELIEF_NORMAL - True -- -- -- True -- 0.5 -- 0.5 -- 0 -- 0 -- 0 -- 0 -- 0 -- 0 -- -- -- True -- False -- 2 -- -- -- True -- gtk-refresh -- 4 -- 0.5 -- 0.5 -- 0 -- 0 -- -- -- 0 -- False -- False -- -- -- -- -- True -- _Update -- True -- False -- GTK_JUSTIFY_LEFT -- False -- False -- 0.5 -- 0.5 -- 0 -- 0 -- PANGO_ELLIPSIZE_NONE -- -1 -- False -- 0 -- -- -- 0 -- False -- False -- -- -- -- -- -- -+ update_image -+ _Update -+ True - - - diff --git a/missing-message.patch b/missing-message.patch deleted file mode 100644 index 9e7d12b..0000000 --- a/missing-message.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff -up gedit-2.29.8/gedit/gedit-io-error-message-area.c.missing-message gedit-2.29.8/gedit/gedit-io-error-message-area.c ---- gedit-2.29.8/gedit/gedit-io-error-message-area.c.missing-message 2010-03-08 13:59:23.179942638 -0500 -+++ gedit-2.29.8/gedit/gedit-io-error-message-area.c 2010-03-08 13:58:32.470689390 -0500 -@@ -635,10 +635,14 @@ gedit_io_loading_error_message_area_new - - if (is_gio_error (error, G_IO_ERROR_TOO_MANY_LINKS)) - { -+ error_message = g_strdup_printf (_("There was a problem opening the file %s."), -+ uri_for_display); - message_details = g_strdup (_("The number of followed links is limited and the actual file could not be found within this limit.")); - } - else if (is_gio_error (error, G_IO_ERROR_PERMISSION_DENIED)) - { -+ error_message = g_strdup_printf (_("There was a problem opening the file %s."), -+ uri_for_display); - message_details = g_strdup (_("You do not have the permissions necessary to open the file.")); - } - else if ((is_gio_error (error, G_IO_ERROR_INVALID_DATA) && encoding == NULL) ||