r21888 - in /desktop/unstable/anjuta/debian: changelog patches/10_terminal_x_crash.patch patches/series

lethalman-guest at users.alioth.debian.org lethalman-guest at users.alioth.debian.org
Fri Oct 9 22:04:20 UTC 2009


Author: lethalman-guest
Date: Fri Oct  9 22:04:19 2009
New Revision: 21888

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=21888
Log:
  * debian/patches/10_terminal_x_crash.patch:
    - Added to fix X crash when running programs in terminal.


Added:
    desktop/unstable/anjuta/debian/patches/10_terminal_x_crash.patch
Modified:
    desktop/unstable/anjuta/debian/changelog
    desktop/unstable/anjuta/debian/patches/series

Modified: desktop/unstable/anjuta/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/anjuta/debian/changelog?rev=21888&op=diff
==============================================================================
--- desktop/unstable/anjuta/debian/changelog [utf-8] (original)
+++ desktop/unstable/anjuta/debian/changelog [utf-8] Fri Oct  9 22:04:19 2009
@@ -24,6 +24,8 @@
     - Remove, applied upstream.
   * debian/patches/01_crash_loading_projects.patch:
     - Added to fix crash when loading/creating projects.
+  * debian/patches/10_terminal_x_crash.patch:
+    - Added to fix X crash when running programs in terminal.
 
  -- Luca Bruno <lethalman88 at gmail.com>  Sun, 04 Oct 2009 00:08:46 +0200
 

Added: desktop/unstable/anjuta/debian/patches/10_terminal_x_crash.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/anjuta/debian/patches/10_terminal_x_crash.patch?rev=21888&op=file
==============================================================================
--- desktop/unstable/anjuta/debian/patches/10_terminal_x_crash.patch (added)
+++ desktop/unstable/anjuta/debian/patches/10_terminal_x_crash.patch [utf-8] Fri Oct  9 22:04:19 2009
@@ -1,0 +1,71 @@
+Anjuta terminal crashes: https://bugzilla.gnome.org/show_bug.cgi?id=597318
+--- a/launcher/anjuta-launcher.c
++++ b/launcher/anjuta-launcher.c
+@@ -1,5 +1,5 @@
+ /*
+-    anjuta_launcher.c
++    anjuta-launcher.c
+     Copyright (C) 2000  Kh. Naba Kumar Singh
+ 
+     This program is free software; you can redistribute it and/or modify
+@@ -49,7 +49,7 @@ main (int argc, char **argv)
+ 
+ 	if (strcmp (argv[1], "--version") == 0)
+ 	{
+-		printf ("anjuta_launcher version 0.1.2\n");
++		printf ("anjuta-launcher version 0.1.2\n");
+ 		exit (0);
+ 	}
+ 	if (strcmp (argv[1], "--__debug_terminal") == 0)
+diff --git a/plugins/build-basic-autotools/executer.c b/plugins/build-basic-autotools/executer.c
+index ec14228..45284ff 100644
+--- a/plugins/build-basic-autotools/executer.c
++++ b/plugins/build-basic-autotools/executer.c
+@@ -410,14 +410,14 @@ execute_program (BasicAutotoolsPlugin* plugin, const gchar *pre_select_uri)
+ 				{
+ 					gchar* oldcmd = cmd;
+ 				
+-					cmd = g_strconcat ("anjuta_launcher ", oldcmd, NULL);
++					cmd = g_strconcat ("anjuta-launcher ", oldcmd, NULL);
+ 
+ 					g_free (oldcmd);
+ 					g_free (launcher_path);
+ 				}
+ 				else
+ 				{
+-					DEBUG_PRINT("%s", "Missing anjuta_launcher");
++					DEBUG_PRINT("%s", "Missing anjuta-launcher");
+ 				}
+ 				
+ 			}
+diff --git a/plugins/gdb/plugin.c b/plugins/gdb/plugin.c
+index 159305b..370d9be 100644
+--- a/plugins/gdb/plugin.c
++++ b/plugins/gdb/plugin.c
+@@ -116,7 +116,7 @@ gdb_plugin_start_terminal (GdbPlugin* plugin)
+ 	}
+ 
+ 	/* Launch terminal */
+-	cmd = g_strconcat ("anjuta_launcher --__debug_terminal ", file, NULL);
++	cmd = g_strconcat ("anjuta-launcher --__debug_terminal ", file, NULL);
+ 	
+ 	/* Get terminal plugin */	
+ 	term = anjuta_shell_get_interface (ANJUTA_PLUGIN (plugin)->shell, IAnjutaTerminal, NULL);
+diff --git a/plugins/run-program/execute.c b/plugins/run-program/execute.c
+index d1db4b4..3d04501 100644
+--- a/plugins/run-program/execute.c
++++ b/plugins/run-program/execute.c
+@@ -243,12 +243,12 @@ execute_with_terminal (RunProgramPlugin *plugin,
+ 	
+ 	if (launcher_path != NULL)
+ 	{
+-		new_cmd = g_strconcat ("anjuta_launcher ", cmd, NULL);
++		new_cmd = g_strconcat ("anjuta-launcher ", cmd, NULL);
+ 		g_free (launcher_path);
+ 	}
+ 	else
+ 	{
+-		DEBUG_PRINT("%s", "Missing anjuta_launcher");
++		DEBUG_PRINT("%s", "Missing anjuta-launcher");
+ 		new_cmd = g_strdup (cmd);
+ 	}

Modified: desktop/unstable/anjuta/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/anjuta/debian/patches/series?rev=21888&op=diff
==============================================================================
--- desktop/unstable/anjuta/debian/patches/series [utf-8] (original)
+++ desktop/unstable/anjuta/debian/patches/series [utf-8] Fri Oct  9 22:04:19 2009
@@ -1,2 +1,3 @@
 01_crash_loading_projects.patch
+10_terminal_x_crash.patch
 99_ltmain_as-needed.patch




More information about the pkg-gnome-commits mailing list