diff options
author | marcus <marcus@FreeBSD.org> | 2002-11-12 03:56:21 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2002-11-12 03:56:21 +0000 |
commit | 7322eb9ff118f6a4f1bfd6a3fab915e2281271f5 (patch) | |
tree | ff84745f7715677c8749e13744e37e8ba283bf5e /x11-toolkits/guile-gnome | |
parent | 99f4f62dc598bca018f19211cecf2b890b08c954 (diff) | |
download | FreeBSD-ports-7322eb9ff118f6a4f1bfd6a3fab915e2281271f5.zip FreeBSD-ports-7322eb9ff118f6a4f1bfd6a3fab915e2281271f5.tar.gz |
Fix build with gtkhtml-1.1.
Diffstat (limited to 'x11-toolkits/guile-gnome')
-rw-r--r-- | x11-toolkits/guile-gnome/files/patch-guile-gnome::gtkhtml::Makefile.in | 15 | ||||
-rw-r--r-- | x11-toolkits/guile-gnome/files/patch-guile-gnome::gtkhtml::gtkhtml-glue.c | 13 |
2 files changed, 19 insertions, 9 deletions
diff --git a/x11-toolkits/guile-gnome/files/patch-guile-gnome::gtkhtml::Makefile.in b/x11-toolkits/guile-gnome/files/patch-guile-gnome::gtkhtml::Makefile.in index bd9cdc0..2032044 100644 --- a/x11-toolkits/guile-gnome/files/patch-guile-gnome::gtkhtml::Makefile.in +++ b/x11-toolkits/guile-gnome/files/patch-guile-gnome::gtkhtml::Makefile.in @@ -1,9 +1,6 @@ - -$FreeBSD$ - ---- guile-gnome/gtkhtml/Makefile.in 2001/11/12 12:07:17 1.1 -+++ guile-gnome/gtkhtml/Makefile.in 2001/11/12 12:07:44 -@@ -98,7 +98,7 @@ +--- guile-gnome/gtkhtml/Makefile.in.orig Fri Mar 9 12:07:49 2001 ++++ guile-gnome/gtkhtml/Makefile.in Mon Nov 11 22:52:47 2002 +@@ -98,10 +98,10 @@ VERSION = @VERSION@ ZVT_LIBS = @ZVT_LIBS@ @@ -11,4 +8,8 @@ $FreeBSD$ +INCLUDES = -I.. -I$(srcdir)/.. -I../../guile-gtk -I$(srcdir)/../../guile-gtk -I$(includedir) $(GUILE_INCS) $(GNOME_INCLUDEDIR) `$(GNOME_CONFIG) --cflags gtkhtml` - GTKHTML_LIBS = -lgtkhtml -lgdk_pixbuf +-GTKHTML_LIBS = -lgtkhtml -lgdk_pixbuf ++GTKHTML_LIBS = -lgtkhtml-1.1 -lgdk_pixbuf + + lib_LTLIBRARIES = libguilegtkhtml.la + libguilegtkhtml_la_SOURCES = gtkhtml-glue.c gtkhtml-support.c diff --git a/x11-toolkits/guile-gnome/files/patch-guile-gnome::gtkhtml::gtkhtml-glue.c b/x11-toolkits/guile-gnome/files/patch-guile-gnome::gtkhtml::gtkhtml-glue.c index a8c661a..4144c78 100644 --- a/x11-toolkits/guile-gnome/files/patch-guile-gnome::gtkhtml::gtkhtml-glue.c +++ b/x11-toolkits/guile-gnome/files/patch-guile-gnome::gtkhtml::gtkhtml-glue.c @@ -1,5 +1,5 @@ --- guile-gnome/gtkhtml/gtkhtml-glue.c.orig Mon Feb 5 22:46:22 2001 -+++ guile-gnome/gtkhtml/gtkhtml-glue.c Sat Aug 31 14:03:17 2002 ++++ guile-gnome/gtkhtml/gtkhtml-glue.c Mon Nov 11 22:52:04 2002 @@ -110,7 +110,7 @@ extern sgtk_boxed_info sgtk_gtimer_info; @@ -56,7 +56,16 @@ ; ; - cr_ret = gtk_html_request_paste (c_html, c_type, c_time); -+ cr_ret = gtk_html_request_paste (c_html, c_selection, c_type, c_time); ++ cr_ret = gtk_html_request_paste (c_html, c_selection, c_type, c_time, 0); SCM_ALLOW_INTS; return scm_long2num (cr_ret); +@@ -693,7 +698,7 @@ + + SCM_DEFER_INTS; + c_html = (GtkHTML*)sgtk_get_gtkobj (p_html); +- gtk_html_paste (c_html); ++ gtk_html_paste (c_html, 0); + SCM_ALLOW_INTS; + + return SCM_UNSPECIFIED; |