summaryrefslogtreecommitdiff
path: root/devel/anjuta/files
diff options
context:
space:
mode:
Diffstat (limited to 'devel/anjuta/files')
-rw-r--r--devel/anjuta/files/patch-global-tags_create_global_tags.sh4
-rw-r--r--devel/anjuta/files/patch-libanjuta_anjuta-launcher.c36
-rw-r--r--devel/anjuta/files/patch-plugins_document-manager_anjuta-docman.c69
-rw-r--r--devel/anjuta/files/patch-plugins_glade_pluginc.c100
4 files changed, 20 insertions, 189 deletions
diff --git a/devel/anjuta/files/patch-global-tags_create_global_tags.sh b/devel/anjuta/files/patch-global-tags_create_global_tags.sh
index 206e390c23bc..f542c83ea557 100644
--- a/devel/anjuta/files/patch-global-tags_create_global_tags.sh
+++ b/devel/anjuta/files/patch-global-tags_create_global_tags.sh
@@ -1,5 +1,5 @@
---- global-tags/create_global_tags.sh.orig Sun Jul 8 03:39:26 2007
-+++ global-tags/create_global_tags.sh Sun Jul 8 03:41:12 2007
+--- global-tags/create_global_tags.sh.in.orig Sun Jul 8 03:39:26 2007
++++ global-tags/create_global_tags.sh.in Sun Jul 8 03:41:12 2007
@@ -68,9 +68,9 @@ if ( [ ! -z $PKG_CONFIG ] && [ -x $PKG_C
## the packages, which we don't like. We only want cflags relevent
## to the packages alone.
diff --git a/devel/anjuta/files/patch-libanjuta_anjuta-launcher.c b/devel/anjuta/files/patch-libanjuta_anjuta-launcher.c
index 73987d782cd5..1c7679ab2b95 100644
--- a/devel/anjuta/files/patch-libanjuta_anjuta-launcher.c
+++ b/devel/anjuta/files/patch-libanjuta_anjuta-launcher.c
@@ -1,5 +1,5 @@
---- libanjuta/anjuta-launcher.c.orig Mon Jun 11 13:22:08 2007
-+++ libanjuta/anjuta-launcher.c Sun Jul 8 03:39:07 2007
+--- libanjuta/anjuta-launcher.c.orig 2008-02-15 18:32:29.000000000 -0500
++++ libanjuta/anjuta-launcher.c 2008-02-25 22:45:03.000000000 -0500
@@ -37,7 +37,7 @@
#include <signal.h>
@@ -9,17 +9,17 @@
# include <pty.h>
# else
# include <libutil.h>
-@@ -713,7 +713,8 @@ anjuta_launcher_scan_output (GIOChannel
+@@ -749,7 +749,8 @@ anjuta_launcher_scan_output (GIOChannel
GError *err = NULL;
do
{
- g_io_channel_read_chars (channel, buffer, FILE_BUFFER_SIZE-1, &n, &err);
+ GIOStatus status;
+ status = g_io_channel_read_chars (channel, buffer, FILE_BUFFER_SIZE-1, &n, &err);
- if (n > 0 && !err) /* There is output */
+ if (n > 0) /* There is output */
{
gchar *utf8_chars;
-@@ -733,6 +734,13 @@ anjuta_launcher_scan_output (GIOChannel
+@@ -776,6 +777,13 @@ anjuta_launcher_scan_output (GIOChannel
anjuta_launcher_synchronize (launcher);
ret = FALSE;
}
@@ -33,17 +33,17 @@
/* Read next chars if buffer was too small
* (the maximum length of one character is 6 bytes) */
} while (!err && (n > FILE_BUFFER_SIZE - 7));
-@@ -762,7 +770,8 @@ anjuta_launcher_scan_error (GIOChannel *
+@@ -805,7 +813,8 @@ anjuta_launcher_scan_error (GIOChannel *
GError *err = NULL;
do
{
- g_io_channel_read_chars (channel, buffer, FILE_BUFFER_SIZE-1, &n, &err);
+ GIOStatus status;
+ status = g_io_channel_read_chars (channel, buffer, FILE_BUFFER_SIZE-1, &n, &err);
- if (n > 0 && !err) /* There is stderr output */
+ if (n > 0) /* There is stderr output */
{
gchar *utf8_chars;
-@@ -782,6 +791,13 @@ anjuta_launcher_scan_error (GIOChannel *
+@@ -833,6 +842,13 @@ anjuta_launcher_scan_error (GIOChannel *
anjuta_launcher_synchronize (launcher);
ret = FALSE;
}
@@ -57,24 +57,24 @@
/* Read next chars if buffer was too small
* (the maximum length of one character is 6 bytes) */
} while (!err && (n > FILE_BUFFER_SIZE - 7));
-@@ -811,7 +827,8 @@ anjuta_launcher_scan_pty (GIOChannel *ch
+@@ -862,7 +878,8 @@ anjuta_launcher_scan_pty (GIOChannel *ch
GError *err = NULL;
do
{
- g_io_channel_read_chars (channel, buffer, FILE_BUFFER_SIZE-1, &n, &err);
+ GIOStatus status;
+ status = g_io_channel_read_chars (channel, buffer, FILE_BUFFER_SIZE-1, &n, &err);
- if (n > 0 && !err) /* There is stderr output */
+ if (n > 0) /* There is stderr output */
{
gchar *utf8_chars;
-@@ -833,6 +850,10 @@ anjuta_launcher_scan_pty (GIOChannel *ch
- else if (err && errno != EAGAIN && errno != EINTR)
- {
- g_warning (_("launcher.c: Error while reading child pty\n"));
-+ ret = FALSE;
-+ }
-+ else if (status == G_IO_STATUS_EOF)
-+ {
+@@ -893,6 +910,10 @@ anjuta_launcher_scan_pty (GIOChannel *ch
+ g_warning ("pty: %s", err->message);
ret = FALSE;
}
++ else if (status == G_IO_STATUS_EOF)
++ {
++ ret = FALSE;
++ }
/* Read next chars if buffer was too small
+ * (the maximum length of one character is 6 bytes) */
+ } while (!err && (n > FILE_BUFFER_SIZE - 7));
diff --git a/devel/anjuta/files/patch-plugins_document-manager_anjuta-docman.c b/devel/anjuta/files/patch-plugins_document-manager_anjuta-docman.c
deleted file mode 100644
index 986d68057a05..000000000000
--- a/devel/anjuta/files/patch-plugins_document-manager_anjuta-docman.c
+++ /dev/null
@@ -1,69 +0,0 @@
---- plugins/document-manager/anjuta-docman.c.orig Thu Jun 7 14:56:53 2007
-+++ plugins/document-manager/anjuta-docman.c Fri Aug 31 16:53:19 2007
-@@ -902,6 +902,7 @@
- const gchar *linenum;
- glong lineno;
- gboolean is_local_uri;
-+ gchar normalized_path_buf[PATH_MAX];
- gchar *normalized_path = NULL;
-
- IAnjutaEditor *te;
-@@ -926,9 +927,11 @@
- /* Get the normalized file path for comparision */
- is_local_uri = gnome_vfs_uri_is_local (vfs_uri);
- if (is_local_uri)
-- normalized_path = realpath (gnome_vfs_uri_get_path (vfs_uri), NULL);
-- if (normalized_path == NULL)
-- normalized_path = g_strdup (uri);
-+ normalized_path = realpath (gnome_vfs_uri_get_path (vfs_uri), normalized_path_buf);
-+ if (normalized_path == NULL) {
-+ (void) strlcpy (normalized_path_buf, uri, PATH_MAX);
-+ normalized_path = normalized_path_buf;
-+ }
-
- gnome_vfs_uri_unref (vfs_uri);
- /* g_free(filename); */
-@@ -942,6 +945,7 @@
- AnjutaDocmanPage *page;
- gboolean te_is_local_uri;
- gchar *te_uri;
-+ char te_normalized_path_buf[PATH_MAX];
- gchar *te_normalized_path = NULL;
-
- page = (AnjutaDocmanPage *) node->data;
-@@ -959,9 +963,11 @@
- te_is_local_uri = gnome_vfs_uri_is_local (vfs_uri);
- if (te_is_local_uri)
- te_normalized_path = realpath (gnome_vfs_uri_get_path (vfs_uri),
-- NULL);
-- if (te_normalized_path == NULL)
-- te_normalized_path = g_strdup (te_uri);
-+ te_normalized_path_buf);
-+ if (te_normalized_path == NULL) {
-+ (void) strlcpy (te_normalized_path_buf, te_uri, PATH_MAX);
-+ te_normalized_path = te_normalized_path_buf;
-+ }
- gnome_vfs_uri_unref (vfs_uri);
-
- if (strcmp (normalized_path, te_normalized_path) == 0)
-@@ -982,12 +988,9 @@
- an_file_history_push (te_uri, lineno);
- g_free (uri);
- g_free (te_uri);
-- g_free (normalized_path);
-- g_free (te_normalized_path);
- return te;
- }
- g_free (te_uri);
-- g_free (te_normalized_path);
- node = g_list_next (node);
- }
- te = anjuta_docman_add_editor (docman, uri, NULL);
-@@ -1006,7 +1009,6 @@
- }
- }
- g_free (uri);
-- g_free (normalized_path);
- return te ;
- }
-
diff --git a/devel/anjuta/files/patch-plugins_glade_pluginc.c b/devel/anjuta/files/patch-plugins_glade_pluginc.c
deleted file mode 100644
index c2bd9847c4cd..000000000000
--- a/devel/anjuta/files/patch-plugins_glade_pluginc.c
+++ /dev/null
@@ -1,100 +0,0 @@
---- plugins/glade/plugin.c.orig 2007-10-23 04:24:26.000000000 -0400
-+++ plugins/glade/plugin.c 2007-10-29 11:05:01.000000000 -0400
-@@ -20,7 +20,7 @@
-
- #include <config.h>
-
--#if (GLADEUI_VERSION <= 302)
-+#if (GLADEUI_VERSION <= 303)
- # include <glade.h>
- #else
- # if (GLADEUI_VERSION <= 314)
-@@ -54,7 +54,7 @@ struct _GladePluginPriv
- GtkActionGroup *action_group;
- GladeApp *gpw;
- GtkWidget *inspector;
--#if (GLADEUI_VERSION > 302)
-+#if (GLADEUI_VERSION > 303)
- GtkWidget *design_notebook;
- #endif
- GtkWidget *view_box;
-@@ -428,7 +428,7 @@ on_api_help (GladeEditor* editor,
- static void
- glade_do_close (GladePlugin *plugin, GladeProject *project)
- {
--#if (GLADEUI_VERSION > 302)
-+#if (GLADEUI_VERSION > 303)
- GtkWidget *design_view;
-
- design_view = g_object_get_data (G_OBJECT (project), "design_view");
-@@ -506,14 +506,14 @@ on_glade_project_changed (GtkComboBox *c
- {
- GladeProject *project;
-
--#if (GLADEUI_VERSION > 302)
-+#if (GLADEUI_VERSION > 303)
- GtkWidget *design_view;
- gint design_pagenum;
- #endif
- gtk_tree_model_get (model, &iter, PROJECT_COL, &project, -1);
- glade_app_set_project (project);
-
--#if (GLADEUI_VERSION > 302)
-+#if (GLADEUI_VERSION > 303)
- design_view = g_object_get_data (G_OBJECT (project), "design_view");
- design_pagenum = gtk_notebook_page_num (GTK_NOTEBOOK (plugin->priv->design_notebook),
- design_view);
-@@ -717,7 +717,7 @@ on_shell_destroy (AnjutaShell *shell, Gl
- gtk_container_remove (GTK_CONTAINER (parent), wid);
- }
-
--#if (GLADEUI_VERSION > 302)
-+#if (GLADEUI_VERSION > 303)
- static void
- glade_plugin_add_project (GladePlugin *glade_plugin, GladeProject *project)
- {
-@@ -800,7 +800,7 @@ activate_plugin (AnjutaPlugin *plugin)
- g_object_unref (G_OBJECT (store));
- gtk_box_pack_start (GTK_BOX (priv->view_box), priv->projects_combo,
- FALSE, FALSE, 0);
--#if (GLADEUI_VERSION > 302)
-+#if (GLADEUI_VERSION > 303)
- # if (GLADEUI_VERSION >= 330)
- priv->inspector = glade_inspector_new ();
-
-@@ -829,7 +829,7 @@ activate_plugin (AnjutaPlugin *plugin)
- gtk_notebook_popup_enable (GTK_NOTEBOOK (glade_app_get_editor ()->notebook));
-
-
--#if (GLADEUI_VERSION > 302)
-+#if (GLADEUI_VERSION > 303)
- /* Create design_notebook */
- priv->design_notebook = gtk_notebook_new ();
- gtk_notebook_set_show_tabs (GTK_NOTEBOOK (priv->design_notebook), FALSE);
-@@ -866,7 +866,7 @@ activate_plugin (AnjutaPlugin *plugin)
- g_object_ref (glade_app_get_palette ());
- g_object_ref (glade_app_get_editor ());
- g_object_ref (priv->view_box);
--#if (GLADEUI_VERSION > 302)
-+#if (GLADEUI_VERSION > 303)
- g_object_ref (priv->design_notebook);
- #endif
- gtk_widget_show (GTK_WIDGET (glade_app_get_palette ()));
-@@ -888,7 +888,7 @@ activate_plugin (AnjutaPlugin *plugin)
- "AnjutaGladeEditor", _("Properties"),
- "glade-plugin-icon",
- ANJUTA_SHELL_PLACEMENT_CENTER, NULL);
--#if (GLADEUI_VERSION > 302)
-+#if (GLADEUI_VERSION > 303)
- anjuta_shell_add_widget (ANJUTA_PLUGIN (plugin)->shell,
- GTK_WIDGET (priv->design_notebook),
- "AnjutaGladeDesigner", _("Designer"),
-@@ -939,7 +939,7 @@ deactivate_plugin (AnjutaPlugin *plugin)
- anjuta_shell_remove_widget (plugin->shell,
- GTK_WIDGET (priv->view_box),
- NULL);
--#if (GLADEUI_VERSION > 302)
-+#if (GLADEUI_VERSION > 303)
- anjuta_shell_remove_widget (plugin->shell,
- GTK_WIDGET (priv->design_notebook),
- NULL);