Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by George Sherwood (54ed1370ac300f9279fa0b062ec2ed649f0102b7)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: George Sherwood <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by George Sherwood (54ed1370ac300f9279fa0b062ec2ed649f0102b7)
  • Date: Sun, 23 Dec 2007 05:08:15 -0600

GIT changes to master grimoire by George Sherwood <gsherwood AT sourcemage.org>:

utils/beagle/HISTORY | 4 ++++
utils/beagle/PRE_BUILD | 3 +++
utils/beagle/mono-1.2.6.patch | 19 +++++++++++++++++++
3 files changed, 26 insertions(+)

New commits:
commit 54ed1370ac300f9279fa0b062ec2ed649f0102b7
Author: George Sherwood <gsherwood AT sourcemage.org>
Commit: George Sherwood <gsherwood AT sourcemage.org>

beagle: Added upstream patch to build with mono 1.2.6

diff --git a/utils/beagle/HISTORY b/utils/beagle/HISTORY
index 7a30ae0..8e4024b 100644
--- a/utils/beagle/HISTORY
+++ b/utils/beagle/HISTORY
@@ -1,3 +1,7 @@
+2007-12-23 George Sherwood <george AT beernabeer.com>
+ * PRE_BUILD: Added to apply patch
+ * mono-1.2.6.patch: Added upstream patch to build with mono 1.2.6
+
2007-12-11 George Sherwood <george AT beernabeer.com>
* DETAILS: Updated to version 0.3.1

diff --git a/utils/beagle/PRE_BUILD b/utils/beagle/PRE_BUILD
new file mode 100755
index 0000000..695febd
--- /dev/null
+++ b/utils/beagle/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+patch -p0 < $SCRIPT_DIRECTORY/mono-1.2.6.patch
diff --git a/utils/beagle/mono-1.2.6.patch b/utils/beagle/mono-1.2.6.patch
new file mode 100644
index 0000000..c268799
--- /dev/null
+++ b/utils/beagle/mono-1.2.6.patch
@@ -0,0 +1,19 @@
+--- tools/Settings.cs 2007-11-27 02:49:57.000000000 +0100
++++ tools/Settings.cs_new 2007-12-16 18:59:15.000000000 +0100
+@@ -887,14 +887,14 @@
+ column.Title = Catalog.GetString ("Name");
+ CellRendererText renderer = new CellRendererText ();
+ column.PackStart (renderer, true);
+- column.SetCellDataFunc (renderer, NameCellFunc);
++ column.SetCellDataFunc (renderer, new
TreeCellDataFunc (NameCellFunc));
+ AppendColumn (column);
+
+ column = new TreeViewColumn ();
+ column.Title = Catalog.GetString ("Address");
+ renderer = new CellRendererText ();
+ column.PackStart (renderer, true);
+- column.SetCellDataFunc (renderer, AddressCellFunc);
++ column.SetCellDataFunc (renderer, new
TreeCellDataFunc (AddressCellFunc));
+ AppendColumn (column);
+
+ }



  • [SM-Commit] GIT changes to master grimoire by George Sherwood (54ed1370ac300f9279fa0b062ec2ed649f0102b7), George Sherwood, 12/23/2007

Archive powered by MHonArc 2.6.24.

Top of Page