summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Johanson <latexer@gentoo.org>2005-05-07 13:27:54 +0000
committerPeter Johanson <latexer@gentoo.org>2005-05-07 13:27:54 +0000
commitd387866370ba4d1eb682e16b578d58cfb10221fc (patch)
treebdfc1d03da14d1166f9c2575881b9c89eeeff580 /dev-dotnet/gecko-sharp/files
parentInitial import (diff)
downloadgentoo-2-d387866370ba4d1eb682e16b578d58cfb10221fc.tar.gz
gentoo-2-d387866370ba4d1eb682e16b578d58cfb10221fc.tar.bz2
gentoo-2-d387866370ba4d1eb682e16b578d58cfb10221fc.zip
Fix for compiling against gtk-sharp-1.9.3. See bug #91752.
(Portage version: 2.0.51.21-r1)
Diffstat (limited to 'dev-dotnet/gecko-sharp/files')
-rw-r--r--dev-dotnet/gecko-sharp/files/digest-gecko-sharp-0.7-r11
-rw-r--r--dev-dotnet/gecko-sharp/files/gecko-sharp-0.7-1.9.3-compat.diff18
2 files changed, 19 insertions, 0 deletions
diff --git a/dev-dotnet/gecko-sharp/files/digest-gecko-sharp-0.7-r1 b/dev-dotnet/gecko-sharp/files/digest-gecko-sharp-0.7-r1
new file mode 100644
index 000000000000..8cff19974a18
--- /dev/null
+++ b/dev-dotnet/gecko-sharp/files/digest-gecko-sharp-0.7-r1
@@ -0,0 +1 @@
+MD5 316ccf9f11a23248ec3d97cb7bd61cc1 gecko-sharp-0.7.tar.gz 104473
diff --git a/dev-dotnet/gecko-sharp/files/gecko-sharp-0.7-1.9.3-compat.diff b/dev-dotnet/gecko-sharp/files/gecko-sharp-0.7-1.9.3-compat.diff
new file mode 100644
index 000000000000..6d15788dc16a
--- /dev/null
+++ b/dev-dotnet/gecko-sharp/files/gecko-sharp-0.7-1.9.3-compat.diff
@@ -0,0 +1,18 @@
+diff -aur gecko-sharp-2.0-0.7-orig/gtkmozembed/WebControl.custom gecko-sharp-2.0-0.7/gtkmozembed/WebControl.custom
+--- gecko-sharp-2.0-0.7-orig/gtkmozembed/WebControl.custom 2005-02-06 16:53:36.000000000 -0500
++++ gecko-sharp-2.0-0.7/gtkmozembed/WebControl.custom 2005-05-07 09:16:59.000000000 -0400
+@@ -72,12 +72,12 @@
+
+ public WebControl(string aPath, string aDir) : base (IntPtr.Zero)
+ {
+- gtk_moz_embed_set_profile_path(aPath, aDir);
++ SetProfilePath (aPath, aDir);
+ Raw = gtk_moz_embed_new ();
+ }
+
+ public WebControl() : base (IntPtr.Zero)
+ {
+- gtk_moz_embed_set_profile_path("gecko-sharp", "DummyProfile");
++ SetProfilePath ("gecko-sharp", "DummyProfile");
+ Raw = gtk_moz_embed_new();
+ }