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
commit2f1299f7cbca6660061a8d43b4740a6e7bcce4a5 (patch)
tree278129ab75e788c10b0a4bb1c894162ad4b8a963 /dev-dotnet/gecko-sharp/files/gecko-sharp-0.7-1.9.3-compat.diff
parentInitial import (diff)
downloadhistorical-2f1299f7cbca6660061a8d43b4740a6e7bcce4a5.tar.gz
historical-2f1299f7cbca6660061a8d43b4740a6e7bcce4a5.tar.bz2
historical-2f1299f7cbca6660061a8d43b4740a6e7bcce4a5.zip
Fix for compiling against gtk-sharp-1.9.3. See bug #91752.
Package-Manager: portage-2.0.51.21-r1
Diffstat (limited to 'dev-dotnet/gecko-sharp/files/gecko-sharp-0.7-1.9.3-compat.diff')
-rw-r--r--dev-dotnet/gecko-sharp/files/gecko-sharp-0.7-1.9.3-compat.diff18
1 files changed, 18 insertions, 0 deletions
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();
+ }