diff options
author | tmclaugh <tmclaugh@FreeBSD.org> | 2005-11-10 04:58:06 +0000 |
---|---|---|
committer | tmclaugh <tmclaugh@FreeBSD.org> | 2005-11-10 04:58:06 +0000 |
commit | aa8ebce2f043f544df39294f483a454dc4734379 (patch) | |
tree | 6479daa786dfc9303d584f42b7cd1e309c3e1db9 /deskutils/tomboy/files | |
parent | 43be3d0c8a72fbaaaae41e620aea647350249f41 (diff) | |
download | FreeBSD-ports-aa8ebce2f043f544df39294f483a454dc4734379.zip FreeBSD-ports-aa8ebce2f043f544df39294f483a454dc4734379.tar.gz |
- Update to 0.3.3
- Add fix for stricter mcs in 1.1.9.x (patch-Tomboy::Trie.cs)
- Remove unnecessary patch (patch-Tomboy::panelapplet::AppletFactory.cs)
- Include bsd.mono.mk.
Approved by: ahze (mentor)
Project by: BSD# <http://www.mono-project.com/Mono:FreeBSD>
Diffstat (limited to 'deskutils/tomboy/files')
-rw-r--r-- | deskutils/tomboy/files/patch-Tomboy::Trie.cs | 20 | ||||
-rw-r--r-- | deskutils/tomboy/files/patch-Tomboy::panelapplet::AppletFactory.cs | 19 |
2 files changed, 10 insertions, 29 deletions
diff --git a/deskutils/tomboy/files/patch-Tomboy::Trie.cs b/deskutils/tomboy/files/patch-Tomboy::Trie.cs index 0899b43..8798a58 100644 --- a/deskutils/tomboy/files/patch-Tomboy::Trie.cs +++ b/deskutils/tomboy/files/patch-Tomboy::Trie.cs @@ -1,11 +1,11 @@ ---- Tomboy/Trie.cs.orig Tue Jan 18 02:33:54 2005 -+++ Tomboy/Trie.cs Thu May 12 20:07:03 2005 -@@ -186,7 +186,7 @@ - MatchHandler match_handler) - { - TrieState q = root; -- TrieMatch m; -+ TrieMatch m = null; - int idx = 0, start_idx = 0, last_idx = 0; +--- Tomboy/Trie.cs.orig Thu May 5 14:11:16 2005 ++++ Tomboy/Trie.cs Sat Sep 10 20:01:33 2005 +@@ -132,7 +132,7 @@ + while (m != null) { + TrieState q1 = m.State; + TrieState r = q.Fail; +- TrieMatch n; ++ TrieMatch n = null; - while (idx < haystack.Length) { + while (r != null) { + n = FindMatchAtState (r, m.Value); diff --git a/deskutils/tomboy/files/patch-Tomboy::panelapplet::AppletFactory.cs b/deskutils/tomboy/files/patch-Tomboy::panelapplet::AppletFactory.cs deleted file mode 100644 index 9bf172c..0000000 --- a/deskutils/tomboy/files/patch-Tomboy::panelapplet::AppletFactory.cs +++ /dev/null @@ -1,19 +0,0 @@ -=================================================================== -RCS file: /cvs/gnome/tomboy/Tomboy/panelapplet/AppletFactory.cs,v -retrieving revision 1.1 -retrieving revision 1.2 -diff -u -r1.1 -r1.2 ---- Tomboy/panelapplet/AppletFactory.cs 2004/10/23 18:21:58 1.1 -+++ Tomboy/panelapplet/AppletFactory.cs 2005/06/08 10:31:47 1.2 -@@ -4,9 +4,9 @@ - - namespace PanelApplet - { -- public class AppletFactory -+ public class AppletFactory : GLib.Object - { -- private AppletFactory () { } -+ private AppletFactory () : base (IntPtr.Zero) { } - - private static string _IID; - private static string _factoryIID; |